@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 15px;
  line-height: 26px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  background-color: #fff;
  color: #000;
  scroll-behavior: smooth;
  position: relative;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 15px;
    line-height: 26px;
  }
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #E60012;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

.flex {
  display: flex;
}
.flex.rev {
  flex-direction: row-reverse;
}
.flex.col {
  flex-direction: column;
}

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

.disable {
  opacity: 0.4;
  pointer-events: none;
}

@media screen and (max-width: 750px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
.bold {
  font-weight: 800;
}

.small {
  font-size: 12px;
  line-height: 20px;
}

.middle {
  font-size: 15px;
  line-height: 22px;
}

.minititle {
  font-size: 18px;
  line-height: 6px;
}

.center {
  text-align: center;
}

.black {
  color: #000;
}

.fadein {
  transition: all 2.5s ease-out;
  transform: translateY(50px);
  opacity: 0;
}
.fadein.show {
  opacity: 1 !important;
  transform: translateY(0);
}

.clear {
  clear: both;
}

button {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  border: none;
  background-color: #E60012;
  height: 60px;
  color: #fff;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 280px;
  margin: 24px auto;
}
button .right_arrow {
  position: absolute;
  right: 15px;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
button:hover .right_arrow {
  right: 12px;
}
button.tic_disable {
  background-color: #C0C0C0;
}
button.tic_disable:hover {
  background-color: #E60012;
}
button.tic_disablegray {
  background-color: #fff;
}
button.tic_disablegray:hover {
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  button.high {
    height: 100px;
  }
}
button.bl {
  background-color: #000;
  height: 36px;
  border-radius: 7px;
}
button.disable {
  background-color: #C0C0C0;
  opacity: 1;
  pointer-events: none;
}

.badge {
  height: 36px;
  background-color: #E60012;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  min-width: 120px;
}
.badge.yellow {
  background-color: #FFF100;
  color: #000;
}
.badge.black {
  background-color: #000;
  color: #fff;
  font-size: 10px;
  width: 72px;
  height: 24px;
  min-width: auto;
}

h2 {
  color: #E60012;
  border-bottom: 1px solid #E60012;
  width: 100%;
  text-align: center;
  position: relative;
  font-size: 24px;
  padding: 15px 0;
  margin-bottom: 60px;
  max-width: 1140px;
}
h2 span {
  position: absolute;
  bottom: -30px;
  font-size: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.sub {
  padding: 15px;
}
.sub h2 {
  color: #E60012;
  width: 100%;
  text-align: center;
  position: relative;
  font-size: 24px;
  padding: 0;
  max-width: 1140px;
  margin: 140px auto 50px;
}
@media screen and (max-width: 750px) {
  .sub h2 {
    font-size: 20px;
  }
}
.sub h2 .hito {
  position: absolute;
  right: 15px;
  width: 90px;
  margin-top: -50px;
}
.sub h2 .hito.left {
  left: 15px;
}
@media screen and (max-width: 750px) {
  .sub h2 .hito {
    width: 70px;
  }
}
.sub h2 span {
  position: absolute;
  bottom: -30px;
  font-size: 14px;
  line-height: 24px;
}
@media screen and (max-width: 750px) {
  .sub h2 span {
    font-size: 12px;
  }
}

h3 {
  color: #E60012;
  border-bottom: 1px solid #E60012;
  width: 100%;
  text-align: left;
  position: relative;
  font-size: 14px;
  line-height: 24px;
  padding: 0;
  margin-bottom: 50px;
  margin-top: 80px;
}
h3 span {
  position: absolute;
  bottom: -30px;
  font-size: 24px;
  left: 0;
}
@media screen and (max-width: 750px) {
  h3 span {
    font-size: 19px;
  }
}

.title {
  color: #E60012;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin: 24px auto;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 500;
}
@media screen and (max-width: 750px) {
  header {
    position: fixed;
  }
}
header #headerwrap {
  background-color: #E60012;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding-left: 15px;
}
@media screen and (min-width: 751px) {
  header #headerwrap {
    height: 80px;
  }
}
header #headerwrap #toplogo {
  width: 160px;
}
header #headerwrap nav {
  flex: 1 1 auto;
}
header #headerwrap nav #menunav {
  display: none;
}
@media screen and (min-width: 1040px) {
  header #headerwrap nav #menunav {
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  header #headerwrap nav #menunav li a {
    color: #fff;
    font-size: 14px;
  }
  header #headerwrap nav #menunav li a:hover {
    opacity: 1;
    color: #FFF100;
  }
  header #headerwrap nav #menunav li a.current {
    color: #FFF100;
  }
  header #headerwrap nav #menunav li a.current .entext,
  header #headerwrap nav #menunav li a.current .jatext {
    padding-bottom: 4px;
    border-bottom: 1px solid #FFF100;
  }
  header #headerwrap nav #menunav li a.current .entext.home,
  header #headerwrap nav #menunav li a.current .jatext.home {
    padding: 0;
  }
  header #headerwrap nav #menunav li a .entext {
    display: none;
  }
  header #headerwrap nav #menunav li a .entext.home {
    display: inline-block;
  }
  header #headerwrap nav #menunav li a .jatext.home {
    display: none;
  }
}
@media screen and (min-width: 1040px) and (min-width: 1040px) {
  header #headerwrap nav #menunav li a .right_arrow {
    display: none;
  }
}
@media screen and (min-width: 1040px) {
  header #headerwrap nav #menunav li .enlink {
    display: none;
  }
}
header #headerwrap nav #menunav.open {
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 70px);
  background-color: #E60012;
  padding: 36px;
  border-top: 1px solid #fff;
}
@media screen and (min-width: 751px) {
  header #headerwrap nav #menunav.open {
    top: 80px;
    height: calc(100vh - 80px);
  }
}
header #headerwrap nav #menunav.open li {
  display: flex;
  justify-content: space-between;
  height: calc((100vh - 80px - 24px - 72px) / 8);
  border-bottom: 1px solid #fff;
}
header #headerwrap nav #menunav.open li:nth-last-of-type(1) {
  border: none;
  margin-top: 15px;
}
header #headerwrap nav #menunav.open li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 auto;
}
header #headerwrap nav #menunav.open li a .h_text {
  color: #fff;
  font-size: 12px;
  margin-bottom: -4px;
}
header #headerwrap nav #menunav.open li a .h_text .entext {
  font-size: 22px;
  padding-right: 15px;
}
@media screen and (max-width: 750px) {
  header #headerwrap nav #menunav.open li a .h_text .entext {
    font-size: 18px;
  }
}
header #headerwrap nav #menunav.open li a .h_text .jatext {
  vertical-align: 2px;
}
header #headerwrap nav #menunav.open li a .right_arrow {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}
header #headerwrap nav #menunav.open li .enlink {
  border: 1px solid #C0C0C0;
  padding: 24px;
  border-radius: 12px;
}
header #headerwrap nav #menunav.open li .enlink .entext {
  font-size: 22px;
}
header #headerwrap #englishbtn {
  padding-left: 15px;
  display: none;
}
@media screen and (min-width: 1040px) {
  header #headerwrap #englishbtn {
    display: block;
  }
}
header #headerwrap #englishbtn .enlink {
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 4px 10px;
  line-height: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
header #headerwrap #snsicon {
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding: 0 15px;
}
header #headerwrap #snsicon a img {
  width: 24px;
}
header #headerwrap .border {
  width: 1px;
  display: inline-block;
  height: 100%;
  background-color: #fff;
}
@media screen and (min-width: 1040px) {
  header #headerwrap .border {
    display: none;
  }
}
header #headerwrap #menuicon {
  display: block;
  position: relative;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (min-width: 1040px) {
  header #headerwrap #menuicon {
    display: none;
  }
}
header #headerwrap #menuicon.open span {
  width: 36px;
  left: 17px;
  transition: 0.3s ease all;
}
header #headerwrap #menuicon.open span:nth-child(1) {
  top: 32px;
  transform: rotate(30deg);
}
header #headerwrap #menuicon.open span:nth-child(2) {
  display: none;
}
header #headerwrap #menuicon.open span:nth-child(3) {
  top: 32px;
  transform: rotate(-30deg);
}
header #headerwrap #menuicon span {
  background-color: #fff;
  height: 1px;
  width: 30px;
  left: 20px;
  position: absolute;
  transition: 0.3s ease all;
}
header #headerwrap #menuicon span:nth-child(1) {
  top: 22px;
}
header #headerwrap #menuicon span:nth-child(2) {
  top: 32px;
}
header #headerwrap #menuicon span:nth-child(3) {
  top: 42px;
}
header #headerwrap #menuicon:hover {
  opacity: 0.7;
}

@media screen and (max-width: 750px) {
  #page_top {
    height: 70px;
  }
}

footer .footerlinks {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}
footer .footerlinks a {
  color: #000;
}
footer #bg_bottom {
  width: 100%;
  height: 50px;
  background-image: url(../images/common/shitabuchi.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
footer .copyright {
  width: 100%;
  background-color: #E60012;
  height: 70px;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  footer .footerlinks,
  footer .copyright {
    font-size: 12px;
  }
}
footer #go_top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  transition: all 0.3s;
}
footer #go_top.show {
  display: block;
}
footer #go_top img {
  width: 20px;
  height: auto;
}
footer #go_top:hover {
  bottom: 19px;
  opacity: 1;
}
footer #tic_btn {
  position: fixed;
  bottom: 60px;
  right: 15px;
}
footer #tic_btn.show {
  display: block;
}
footer #tic_btn a {
  width: 100px;
  height: 78px;
  display: block;
}
footer #tic_btn a img {
  width: 100%;
  height: 100%;
}
footer #tic_btn a:hover {
  opacity: 1;
}
footer #tic_btn a:hover img {
  animation: collapseExpand 0.6s ease-in-out forwards;
}

main #bg_top {
  width: 100%;
  height: 50px;
  background-image: url(../images/common/uebuchi.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
main .whitebg {
  background-color: #fff;
  min-height: 600px;
  padding: 36px;
}
@media screen and (max-width: 750px) {
  main .whitebg {
    padding: 15px;
  }
}
main section {
  max-width: 1140px;
  margin: 36px auto;
}
main .box {
  border: 1px solid #00A0E9;
  border-radius: 10px;
  margin: 0 auto;
  padding: 24px 36px;
}

.tablist {
  margin: 0 auto;
  font-size: 26px;
  display: block;
  text-align: center;
  margin-bottom: 36px;
}
@media screen and (max-width: 750px) {
  .tablist {
    font-size: 20px;
  }
}
.tablist a {
  cursor: pointer;
  color: #000;
}
.tablist a.current {
  color: #E60012;
}
.tablist a:hover {
  opacity: 1;
  color: #E60012;
}

.tabcont {
  display: none;
}
.tabcont.show {
  display: block;
}

.ougi_img {
  width: 22px;
  vertical-align: middle;
  margin: 0 2px 5px;
}

.small .ougi_img {
  margin: 0 2px 2px;
}

@keyframes collapseExpand {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}/*# sourceMappingURL=common.css.map */