@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zalando+Sans+SemiExpanded:ital,wght@0,200..900;1,200..900&display=swap');
/*  font-family: "Zalando Sans", sans-serif;*/
/*  font-family: "Zalando Sans SemiExpanded", sans-serif;*/

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: left;
  line-height: 1.7;
  color: #111;
  min-width: 1040px;
  font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Font Awesome 6 Free";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  padding: 0;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

p {
  padding: 0;
  margin: 0;
}

img {
  -webkit-touch-callout: none;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  display: block;
  border-radius: 5px;
}

a {
  text-decoration: none;
  color: #111;
  outline: none;
}

a:active,
a:hover,
a:focus {
  outline: none;
}

a,
input {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}

a:hover,
.link input:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 768px) {
  body {
    width: 100%;
    min-width: 0;
  }

  a {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
  }

  a:hover {
    opacity: 1;
  }
}


/*============================
flex
============================*/

.flex {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}


/*============================
脚注文字表記etc.
============================*/

.eng {
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.min {
  font-size: 13px;
  display: block;
  color: #999999;
}

.min-info {
  padding-left: 20px;
  font-size: 13px;
  color: #999;
  position: relative;
}

.min-info::before {
  position: absolute;
  content: '※';
  top: 0;
  left: 0;
}

.lead {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}

.bold {
  color: #032582;
  font-weight: 700;
}


/*============================
表示切り替え
============================*/

.sp-only {
  display: none;
}


@media only screen and (max-width: 980px) {

  /*============================
脚注文字表記etc.
============================*/
  .min {
    font-size: 12px;
  }

  .lead {
    font-size: 18px;
    line-height: 28px;
  }

  /*============================
表示切り替え
============================*/
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

/*============================
wrapper
============================*/

.wrapper {
  position: relative;
  overflow: hidden;
}

/*============================
inner
============================*/

.inner {
  width: 1040px;
  margin: auto;
}

@media only screen and (max-width: 980px) {
  .inner {
    width: 90.625%;
    margin: auto;
  }
}


/*============================
header
============================*/

#top {
  position: fixed;
  width: 100%;
  z-index: 80000;
  padding: 30px 20px 0 30px;
  transition: .6s;
  top: 0;
}

.siteTitle {
  width: 324px;
}

.siteTitle a {
  padding-top: 18.5185%;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  background: url(../images/common/header/sitetitle.png) no-repeat left center;
  -webkit-background-size: 100%;
  background-size: 100%;
  transition: opacity 0.6s ease;
}

/**header 途中から*****/

#top.transform {
  padding: 10px;
}

#top.transform .siteTitle {
  width: 102px;
}

#top.transform .siteTitle a {
  padding-top: 58.8235%;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  background: url(../images/common/header/sitetitle_transform.png) no-repeat left center;
  -webkit-background-size: 100%;
  background-size: 100%;
}

@media only screen and (max-width: 1260px) {
  #top {
    padding: 30px 10px 0 10px;
  }

  .siteTitle {
    width: 200px;
  }
}

@media only screen and (max-width: 980px) {
  #top {
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 10px;
    padding: 10px;
  }

  .siteTitle {
    width: 160px;
  }

  /**header 途中から*****/

  #top.transform {
    padding: 10px;
  }

  #top.transform .siteTitle {
    width: 160px;
  }

  #top.transform .siteTitle a {
    padding-top: 18.5185%;
    background-image: url(../images/common/header/sitetitle.png);
  }
}


/*============================
nav
============================*/

#top .globalNav {
  align-items: center;
}

.site-header nav ul {
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 50px;
}

.site-header nav ul li:nth-of-type(n+2) {
  margin-left: 30px;
}

#top .globalNav > li > a {
  color: #0f2664;
  display: block;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1;
  position: relative;
  z-index: 2;
}

#top .globalNav > li > a::before {
  position: absolute;
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background-color: #efca08;
  top: -3px;
  right: -4px;
  transform: scale(0);
  transition:
    opacity 0.2s ease,
    transform 0.6s ease;
  z-index: -1;
}

#top .globalNav > li.current > a::before,
#top .globalNav > li > a:hover::before {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}

#top a.mail {
  display: block;
  margin-left: 10px;
  padding: 18px 20px;
  height: 55px;
  background-color: #d00000;
  color: #fff;
  line-height: 1;
  border-radius: 50px;
  position: relative;
  transition: 0.6s;
}

@media only screen and (max-width: 1260px) {
  .site-header nav ul li:nth-of-type(n+2) {
    margin-left: 15px;
  }

  #top .globalNav > li > a,
  #top a.mail {
    font-size: 14px;
  }

  #top a.mail {
    padding: 20px;
  }
}

@media only screen and (max-width: 980px) {
  #top nav {
    margin: 0;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 50px;
    background-color: rgba(15, 38, 100, 0.9);
    overflow-y: scroll;
  }

  .site-header nav ul {
    padding: 0;
    background-color: transparent;
  }

  #top .globalNav li {
    float: none;
    width: 100%;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  #top .globalNav li:last-of-type {
    border: none;
  }

  .site-header nav ul li:nth-of-type(n+2) {
    margin-left: 0;
  }

  #top .globalNav li a {
    overflow: inherit;
    width: 100%;
    height: inherit;
    padding: 17px 50px;
    text-align: left;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    line-height: 2;
  }

  #top .globalNav li a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 10;
  }

  #top .globalNav > li > a::before {
    top: 45%;
    right: auto;
    left: 30px;
    width: 8px;
    height: 8px;
  }

  #top a.mail {
    margin: 0 auto;
    padding: 24px 50px;
    height: auto;
    border-radius: 0;
    font-size: 16px;
  }

  #top a.contact {
    position: absolute;
    right: 60px;
    top: 0;
    bottom: 0;
    margin: auto;
    padding: 7px 10px;
    width: 40px;
    height: 40px;
    background-color: #d00000;
    border-radius: 50px;
  }

  #top a.contact i {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
  }

  #top ul li.contact a span {
    font-family: "Zalando Sans SemiExpanded", sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  #top ul li.contact a {
    width: 100%;
    border-radius: 0;
    border-bottom: none;
    font-size: 20px;
  }

  #top ul li.contact a span.eng {
    line-height: 1;
  }

  /**header 途中から*****/
  #top.transform .globalNav li {
    width: 100%;
  }

  #top.transform .site-header nav ul li:nth-of-type(n+2) {
    margin-left: 0;
  }

  #top.transform .globalNav > li > a {
    padding: 17px 50px;
  }
}


/*============================
menu(sp)  ハンバーガー
============================*/

.menu {
  display: none;
}

@media only screen and (max-width: 980px) {
  .menu {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 16px;
    z-index: 1000;
    width: 31px;
    height: 23px;
  }

  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }

  .menu-trigger {
    position: relative;
    width: 31px;
    height: 23px;
    border-radius: 50px;
  }

  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 50px;
    background-color: #0f2664;
  }

  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }

  .menu-trigger span:nth-of-type(2) {
    top: 10px;
  }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  /* anime */
  .active .menu-trigger span {
    background-color: #0f2664;
  }

  .active .menu-trigger span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }

  .active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }

  .active .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
}


/*============================
cont_img
============================*/

.cont_img {
  position: relative;
  background: url(../images/common/cont_img.jpg) no-repeat center center;
  background-size: cover;
  height: 435px;
}

.cont_img h1 {
  font-size: 16px;
  line-height: 1;
  color: #d00000;
  margin: 195px auto 145px;
}

.cont_img h1 span {
  display: block;
}

.cont_img h1 span.eng {
  font-size: 80px;
  margin-bottom: 20px;
  color: #0f2664;
}

@media only screen and (max-width: 768px) {

  .cont_img {
    margin-top: 50px;
    padding: 60px 20px;
    height: 180px;
  }

  .cont_img h1 {
    font-size: 13px;
    margin: 0;
  }

  .cont_img h1 span.eng {
    font-size: 32px;
    margin-bottom: 10px;
  }
}


/*============================
パンくず
============================*/

.root {
  padding: 15px;
  font-size: 13px;
  font-weight: 700;
  background-color: #f7f7f7;
  color: #0f2664;
}

.root ul {
  display: flex;
  overflow: hidden;
  justify-content: flex-end;
}

.root li {
  position: relative;
  letter-spacing: 0;
  padding-bottom: 0;
  white-space: nowrap;
}

.root li::before {
  content: '/';
  margin: 0 5px;
}

.root li:first-child {
  margin-left: 0;
}

.root li:first-child:before {
  display: none;
}

.root li a {
  color: #0f2664;
}

.root li a i {
  color: #efca08;
}

@media only screen and (max-width: 768px) {

  .root .inner {
    width: 100%;
    margin: 0;
    overflow-x: auto;
  }

  .root ul {
    min-width: max-content;
  }
}


/*============================
container
============================*/

.cont .container {
  overflow: hidden;
}


/*============================
Link
============================*/

.link {
  text-align: right;
  line-height: 1;
  margin-top: 60px;
  justify-content: flex-end;
}

.link a {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding: 20px 0;
  margin-right: 85px;
  color: #032582;
}

.link a::after,
.link a::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -85px;
  margin: auto;
  transition: all 0.4s ease;
}

.link a::before {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #efca08;
}

.link a::after {
  position: absolute;
  top: 0;
  right: -58px;
  margin: auto;
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 10;
}

.link a:hover {
  opacity: 0.8;
}

.link a:hover::before {
  background-color: #0f2664;
  transform: scale(1.2);
}

@media only screen and (max-width: 768px) {

  .link {
    margin-top: 30px;
  }

  .link a {
    font-size: 16px;
    padding: 20px 0;
    margin-right: 65px;
  }

  .link a::after,
  .link a::before {
    right: -65px;
  }

  .link a::before {
    width: 50px;
    height: 50px;
  }

  .link a::after {
    right: -43px;
  }

  .link a:hover {
    opacity: 1;
  }

  .link a:hover::before {
    background-color: #F0CA08;
    transform: scale(1);
  }
}


/*============================
article
============================*/

article,
.cont article {
  padding: 120px 0;
}

.cont article:first-of-type {
  padding-top: 80px;
}

article .inner p {
  margin-top: 20px;
}

article .inner p:first-of-type {
  margin-top: 0;
}

.cont h2 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 40px;
}

.cont h2 .eng {
  display: block;
  margin-bottom: 10px;
  font-size: 32px;
  color: #0f2664;
}

.cont h2 .ja {
  padding-left: 25px;
  position: relative;
}

.cont h2 .ja::before {
  display: block;
  content: '';
  position: absolute;
  width: 15px;
  height: 2px;
  background-color: #d00000;
  top: 50%;
  left: 0;
}

.cont h3 {
  padding: 10px;
  margin-top: 40px;
  margin-bottom: 30px;
  font-weight: 700;
  border-bottom: 1px solid #0f2664;
}

.cont h4 {
  font-size: 16px;
  margin: 30px 0 10px;
}

@media only screen and (max-width: 768px) {

  article,
  .cont article {
    padding: 50px 0;
  }

  .cont article:first-of-type {
    padding-top: 40px;
  }

  .cont h2 {
    font-size: 12px;
    margin-bottom: 30px;
  }

  .cont h2 .eng {
    margin-bottom: 8px;
    font-size: 24px;
  }

  .cont h2 .ja {
    padding-left: 20px;
  }

  .cont h2 .ja::before {
    width: 10px;
  }

  .cont h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }
}


/*============================
table
============================*/

table.info {
  width: 100%;
}

table.info tr {
  display: block;
  width: 100%;
  padding: 20px 30px;
  background-color: #f7f7f7;
  border-radius: 3px;
}

table.info tr:nth-of-type(n+2) {
  margin-top: 15px;
}

table.info th {
  width: 120px;
  vertical-align: baseline;
}

table.info td ul {
  padding-left: 20px;
}

table.info td li {
  position: relative;
}

table.info td li::before {
  display: block;
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50px;
  background-color: #d00000;
  top: 45%;
  left: -15px;
}

table.info td ol {
  padding-left: 25px;
  counter-reset: no;
}

table.info td ol li::before {
  position: absolute;
  display: block;
  counter-increment: no;
  content: counter(no, decimal)'.';
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #0f2664;
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  top: 8px;
  left: -25px;
  width: 0;
  height: 0;
}

table.info td li:first-child {
  padding-top: 0;
}

table.info td dt {
  padding-top: 10px;
}

table.info td dt:first-of-type {
  padding-top: 0;
}

table.info td p {
  margin-top: 0;
}

a.google {
  display: block;
  font-weight: 500;
  font-family: "Zalando Sans SemiExpanded", sans-serif;
}

a.google::before {
  content: '\f3c5';
  font-size: 13px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  margin-right: 5px;
  color: #efca08;
}

@media only screen and (max-width: 768px) {

  table.info tr {
    padding: 15px;
  }

  table.info th {
    display: block;
    margin-bottom: 5px;
  }
}


/*============================
.about-service
============================*/

.about-service {
  margin-top: 70px;
}

.about-service > .flex {
  align-items: flex-end
}

.about-service .flex > img {
  width: 471px;
  animation: yurayura 2s linear infinite alternate;
}

.about-service dl.intro {
  width: 550px;
  padding-bottom: 15px;
}

.about-service dl.intro dt {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 3px solid #e6edf2;
  color: #032582;
  position: relative;
}

.about-service dl.intro dt span {
  padding-left: 5px;
}

.about-service dl.intro dt::before {
  position: absolute;
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  bottom: -3px;
  right: 0;
  background-color: #efca08;
}

.about-service dl.recommend {
  margin-top: 75px;
  border: 1px solid #0f2664;
  border-radius: 5px;
}

.about-service dl.recommend dt {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  background-color: #0f2664;
  color: #fff;
}

.about-service dl.recommend dd {
  padding: 30px;
  font-size: 18px;
}

.about-service dl.recommend dd ul li {
  padding-left: 32px;
  line-height: 1;
  position: relative;
}

.about-service dl.recommend dd ul li:nth-of-type(n+2) {
  margin-top: 20px;
}

.about-service dl.recommend dd ul li::before {
  position: absolute;
  display: block;
  content: '\f00c';
  font-size: 16px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  top: 3px;
  left: 0;
  color: #032582;
}

.about-service .box {
  margin-top: 30px;
  padding: 30px;
  border: 1px solid #0f2664;
  border-radius: 5px;
  counter-reset: no;
}

.about-service .box .detail {
  padding: 35px 30px 40px 30px;
  width: 480px;
  border: 1px solid #0f2664;
  border-radius: 5px;
  align-items: flex-start;
  position: relative;
}

.about-service .box .detail::before {
  position: absolute;
  display: block;
  counter-increment: no;
  content: '/ 'counter(no, decimal-leading-zero);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #0f2664;
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  bottom: 15px;
  right: 15px;
}

.about-service .box .detail:nth-of-type(n+3) {
  margin-top: 20px;
}

.about-service .box .detail img {
  width: 91px;
  animation: none;
}

.about-service .box .detail dl {
  width: 300px;
}

.about-service .box .detail dl dt {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #032582;
}

.about-service .min-info {
  margin-top: 10px;
  float: right;
}

@media only screen and (max-width: 768px) {

  .about-service > .flex {
    flex-direction: column-reverse;
  }

  .about-service .flex > img {
    /* margin: 10px 0 0 auto; */
    width: 60%;
  }

  .about-service dl.intro {
    width: 100%;
    padding-bottom: 0;
  }

  .about-service dl.intro dt {
    font-size: 22px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e6edf2;
  }

  .about-service dl.intro dt span {
    padding-left: 5px;
  }

  .about-service dl.intro dt::before {
    height: 2px;
  }

  .about-service dl.recommend {
    margin-top: 20px;
  }

  .about-service dl.recommend dt {
    padding: 15px 15px;
    font-size: 14px;
    font-weight: 600;
  }

  .about-service dl.recommend dd {
    padding: 15px;
    font-size: 15px;
  }

  .about-service dl.recommend dd ul li {
    padding-left: 25px;
    line-height: 1.7;
    position: relative;
  }

  .about-service dl.recommend dd ul li:nth-of-type(n+2) {
    margin-top: 10px;
  }

  .about-service dl.recommend dd ul li::before {
    font-size: 15px;
  }

  .about-service .box {
    margin-top: 20px;
    padding: 15px;
    flex-direction: column;
  }

  .about-service .box .detail {
    padding: 15px 10px 25px 15px;
    width: 100%;
  }

  .about-service .box .detail::before {
    bottom: 10px;
    right: 10px;
  }

  .about-service .box .detail:nth-of-type(n+2),
  .about-service .box .detail:nth-of-type(n+3) {
    margin-top: 15px;
  }

  .about-service .box .detail img {
    width: 40px;
  }

  .about-service .box .detail dl {
    width: 82%;
  }

  .about-service .box .detail dl dt {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.7;
  }

  .about-service .box .detail dl dd {
    text-align: left;
    font-size: 15px;
  }
}


/*============================
#faq
============================*/

.qaContainer .box {
  position: relative;
}

.qaContainer .box:nth-of-type(n+2) {
  margin-top: 20px;
}

.qaContainer .box:before,
.qaContainer .answer .text:before {
  top: 0;
  left: 30px;
  position: absolute;
  content: "Q";
  font-size: 24px;
  font-weight: 600;
  line-height: 56px;
  z-index: 10;
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  color: #0f2664;
}

.qaContainer .answer .text:before {
  top: 0;
  left: 30px;
  content: "A";
  line-height: 60px;
}

.qaContainer .toggle {
  display: none;
}

.qaContainer .Label {
  padding: 20px 40px 20px 70px;
  display: block;
  line-height: 1;
  background-color: #f8f8f8;
  border-radius: 3px;
  cursor: pointer;
}

.qaContainer .Label::before {
  content: '\2b';
  font-weight: 900;
  font-size: 17px;
  font-family: 'Font Awesome 6 Free';
  position: absolute;
  top: 0;
  right: 20px;
  line-height: 56px;
  color: #0f2664;
}

.qaContainer .answer {
  height: 0;
  overflow: hidden;
}

.qaContainer .Label,
.qaContainer .answer {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
  border-radius: 5px;
}

.qaContainer .answer .text {
  padding: 15px 50px 20px 70px;
  font-size: 15px;
  border: 2px solid #f7f7f7;
  position: relative;
  border-radius: 0 0 5px 5px;
}

.qaContainer .answer .text .min-info {
  display: block;
}

.qaContainer .toggle:checked + .Label {
  border-radius: 5px 5px 0 0;
}

.qaContainer .toggle:checked + .Label + .answer {
  /*開閉時*/
  padding: 0 30px;
  height: auto;
  transition: all .3s;
  border-radius: 0 0 5px 5px;
}

.qaContainer .toggle:checked + .Label + .answer {
  padding: 0;
}

.qaContainer .toggle:checked + .Label::before {
  content: '\f068';
}

.qaContainer .answer .text dl {
  margin-top: 20px;
}

.qaContainer .answer .text dl dt {
  font-weight: 700;
  color: #00832e;
}

.qaContainer .answer .text dl dt:nth-of-type(n+2) {
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .qaContainer .box:before {
    top: 0;
    left: 5%;
    font-size: 15px;
    line-height: 47px;
  }

  .qaContainer .Label {
    padding: 3% 10% 3% 13%;
    display: block;
    font-size: 15px;
    line-height: 1.7;
  }

  .qaContainer .Label::before {
    font-size: 13px;
    top: 0;
    right: 3%;
    line-height: 47px;
  }

  .qaContainer .answer .text {
    padding: 3% 3% 3% 13%;
    font-size: 14px;
  }

  .qaContainer .answer .text:before {
    font-size: 15px;
    top: 15px;
    left: 5%;
    line-height: 1;
  }
}

/*============================
.contact-section
============================*/

.contact-section {
  background-color: #0f2664;
  padding: 100px 0;
}

.contact-section a {
  width: 500px;
  padding: 60px 50px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}

.contact-section a .ja {
  color: #111;
  font-size: 14px;
  position: relative;
  z-index: 2;
  transition: color 0.6s ease;
}

.contact-section a .eng {
  display: block;
  margin-bottom: 10px;
  color: #0f2664;
  font-size: 45px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  z-index: 2;
  transition: color 0.6s ease;
}

.contact-section a:hover {
  opacity: 1;
}

.contact-section a:hover .ja,
.contact-section a:hover .eng {
  color: #fff;
}

.contact-section a::before {
  content: '';
  position: absolute;
  display: block;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  right: 20px;
  top: 50%;
  background: #efca08;
  transform: translateY(-50%) scale(1);
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
  z-index: 1;
}

.contact-section a::after {
  content: '';
  color: #fff;
  position: absolute;
  right: 48px;
  top: 47%;
  margin: auto;
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 10;
  transition: background 0.6s ease, color 0.6s ease;
}

.contact-section a:first-child:hover::before,
.contact-section a:last-child:hover::before {
  transform: translateY(-50%) scale(30);
  opacity: 1;
}

/* ── Recruit：黄色 ── */
.contact-section a:first-child::before,
.contact-section a:first-child::after {
  background: #efca08;
}

.contact-section a:first-child:hover::after {
  color: #efca08;
}

/* ── Contact：赤 ── */
.contact-section a:last-child::before,
.contact-section a:last-child::after {
  background: #d00000;
}

.contact-section a:last-child:hover::after {
  color: #d00000;
}

@media only screen and (max-width: 768px) {

  .contact-section {
    padding: 60px 0;
  }

  .contact-section a {
    width: 100%;
    padding: 25px 20px;
  }

  .contact-section a:last-of-type {
    margin-top: 20px;
  }

  .contact-section a .ja {
    font-size: 13px;
  }

  .contact-section a .eng {
    font-size: 32px;
  }

  .contact-section a:hover {
    opacity: 1;
  }

  .contact-section a:hover .ja {
    color: #111;
  }

  .contact-section a:hover .eng {
    color: #0f2664;
  }

  .contact-section a::before {
    width: 50px;
    height: 50px;
    top: 35%;
    transform: none;
    transform-origin: none;
    transition: none;
  }

  .contact-section a:first-child::before {
    top: 34%;
  }

  .contact-section a::after {
    right: 42px;
    transition: none;
  }

  .contact-section a.faq::after {
    top: 49%;
  }

  .contact-section a:first-child:hover::before,
  .contact-section a:last-child:hover::before {
    transform: none;
    opacity: 1;
  }
}


/*============================
footer
============================*/

footer {
  padding-top: 100px;
  background: #222;
}

footer .detail {
  color: #fff;
  font-size: 15px;
  width: 290px;
}

footer .detail .siteTitle {
  width: 290px;
  margin-bottom: 30px;
}

footer .siteTitle a {
  padding-top: 18.6206%;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  background: url(../images/common/footer/sitetitle.png) no-repeat left center;
  -webkit-background-size: 100%;
  background-size: 100%;
}

footer .detail a.map {
  margin-top: 20px;
  display: inline-block;
  background-color: #373737;
  color: #fff;
  padding: 10px 30px;
  border-radius: 3px;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
}

footer .detail a.map i {
  color: #efca08;
}

footer .footer-nav {
  width: 420px;
}

footer .footer-nav .sitelink {
  border-bottom: 1px solid #404040;
  padding-bottom: 30px;
  margin-bottom: 30px;
  justify-content: flex-start;
}

footer .footer-nav .sitelink li {
  line-height: 1;
}

footer .footer-nav .sitelink li:nth-of-type(n+2) {
  margin-left: 25px;
}

footer .footer-nav .sitelink li:nth-of-type(5) {
  margin: 0;
}

footer .footer-nav .sitelink li:nth-of-type(n+5) {
  margin-top: 25px;
}

footer .footer-nav .sitelink li a {
  color: #fff;
}

footer .footer-nav .sublink li {
  float: left;
  margin-right: 30px;
}

footer .footer-nav .sublink li a {
  color: #999;
  font-size: 13px;
  line-height: 1;
}

footer .copyright {
  margin-top: 100px;
  font-size: 12px;
  font-weight: 500;
  padding: 15px 0;
  color: #fff;
  background-color: #040818;
}

@media only screen and (max-width: 768px) {

  footer {
    padding-top: 60px;
  }

  footer .detail {
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  footer .detail .siteTitle {
    width: 80%;
    margin: 0 auto 20px;
  }

  footer .detail a.map {
    margin: 5px 0 30px;
    font-size: 16px;
    background-color: transparent;
  }

  footer .footer-nav {
    width: 100%;
  }

  footer .footer-nav .sitelink {
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  footer .footer-nav .sitelink li {
    width: 49%;
    text-align: center;
  }

  footer .footer-nav .sitelink li:nth-of-type(n+2) {
    margin-left: 0;
  }

  footer .footer-nav .sitelink li:nth-of-type(n+3) {
    margin-top: 7px;
  }

  footer .footer-nav .sitelink li a {
    padding: 15px 10px;
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 15px;
    border-radius: 3px;
  }

  footer .footer-nav .sublink li {
    margin-right: 40px;
  }

  footer .copyright {
    margin-top: 60px;
    font-size: 13px;
    padding: 13px 0;
  }
}


/*============================
common_js
============================*/

.sa {
  opacity: 0;
  transition: all 0.8s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

.sa--up {
  transform: translate(0, 100px);
}

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}


/*============================
animation
============================*/
@keyframes yurayura {
  0% {
    transform: translateY(2%);
  }

  100% {
    transform: translateY(-2%);
  }
}

@keyframes yurayura2 {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-5deg);
  }
}
