﻿@charset "utf-8";

:root {
  --x-sp-margin: 32px;
}

/* CSS Document */
#container {}

#container p {
  line-height: 1.5;
}





#res-header {
  text-align: center;
  width: calc(100% + var(--x-sp-margin));
  margin-left: calc(var(--x-sp-margin) / 2 * -1);
}

#res-header img {
  width: 100%;
  height: auto;
}


@media screen and (min-width: 769px) {
  #res-header {
    width: 100%;
    margin-left: auto;
  }


}


/*---------------------------------
  　独自のコンテンツエリア
-----------------------------------*/
#container {
  font-family: "Noto Sans", sans-serif;
  /* font-family: "noto sans jp", "", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif; */
  margin: 0 auto;
  color: #222222;
  font-size: 16px;
  letter-spacing: 0.5px;
  width: calc(100% - var(--x-sp-margin));
  margin: auto;
}

@media screen and (min-width: 769px) {
  #container {
    width: 960px;
    margin: 0 auto;
  }
}

#container a {
  color: #0071BE;
  transition: all 0.2s;
}

#container .link-opacity:hover {
  opacity: 0.6;
}

#container .link-text:hover {
  text-decoration: underline;
}

.contents-area {
  font-size: 18px;
  margin-bottom: 50px;
}

section h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 24px;
}




.intro {
  margin: 18px auto;
}

@media screen and (min-width: 768px) {
  .intro {
    margin: 11px auto 24px;
  }

  .intro p {
    font-size: 14px;
  }
}


/*---------------------------------
  　タブ
-----------------------------------*/


/* コンテンツ非表示 */
.tab {
  display: flex;
  justify-content: space-evenly;
  overflow: hidden;
  margin-bottom: -1px;
}

.tab button {
  background: #EFF7FF;
  border-radius: 6px 6px 0 0;
  background: inherit;
  font-size: 18px;
  float: left;
  border: none;
  cursor: pointer;
  font-weight: bold;
  padding: 8px 16px;
  width: 42%;
}

@media screen and (min-width: 768px) {
  .tab button {
    font-size: 18px;
    padding: 11px;
  }
}

.tab .tablinks--1 {
  background: #EFF7FF;
  border-left: solid 1px #0071BE;
  border-top: solid 1px #0071BE;
  border-right: solid 1px #0071BE;
  border-bottom: solid 1px #F0A22D;
  color: #0071BE;
}

.tab .tablinks--2 {
  background: #FFFBF5;
  border-left: solid 1px #F0A22D;
  border-top: solid 1px #F0A22D;
  border-right: solid 1px #F0A22D;
  border-bottom: solid 1px #0071BE;
  color: #B45D00;
}

.tab button.active {
  border-bottom: none !important;
}

.tab-content {
  display: none;
  padding: 18px;
  background: #EFF7FF;
  border: 1px solid #0071BE;
  border-radius: 6px;
}

@media screen and (min-width: 768px) {
  .tab-content {
    padding: 30px;
  }
}

#tab2.tab-content,
#tab4.tab-content {
  background: #FFFBF5;
  border-color: #F0A22D;
}



.tab-content h4 {
  margin-bottom: 12px;
}

.tab-content p,
.tab-content dt,
.tab-content dd {
  line-height: 1.5;
}

#tab3 .tab-content-dl dt {
  text-indent: -2em;
  padding-left: 2em;
}

.tab-content .font-small {
  font-size: 14px;
  text-indent: -1.1em;
  padding-left: 1em;
}

@media screen and (min-width: 768px) {
  .tab-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
}


.tab-content .num-icon {
  display: inline-block;
  background: #000;
  color: #fff;
  border-radius: 3px;
  width: 1.6em;
  height: 1.6em;
  text-align: center;
  text-indent: 0;
  font-size: 14px;
  line-height: 1.75;
  margin-right: 5px;
  vertical-align: middle;
}

.tab-content ul {
  margin: 12px 0;
}

.tab-content ul li {
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 10px;
}


@media screen and (min-width: 768px) {
  .tab-content .num-icon {
    width: 2em;
    height: 2em;
    line-height: 2;
  }

  .tab-content ul li {
    list-style: disc;
    list-style-position: inside;
    margin-bottom: 5px;
  }

  .tab-content ul li:last-child {
    margin-bottom: 0;
  }

  .tab-content dl.tab-content-dl--second {
    margin-top: 40px;
  }
}

.tab-content a.arrow_r {
  padding-right: 1.25rem;
}

.tab-content a.arrow_r::after {
  top: -4px;
}

.tab-content img:not(.gray-arrow) {
  width: 420px;
  height: auto;
}


.tab-content .gray-arrow {
  transform: rotate(90deg);
  width: 29px;
  height: auto;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .tab-content .gray-arrow {
    transform: rotate(0deg);
  }
}

/*---------------------------------
  　Point
-----------------------------------*/
.point {
  margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .point {
    margin-bottom: 36px;
  }
}

.list-point {
  border: solid 1px #DEDEDF;
  border-radius: 6px;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .list-point {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;

  }
}

.list-point>li {
  padding: 16px 10px;
  border-bottom: solid 1px #DEDEDF;
}

@media screen and (min-width: 768px) {
  .list-point>li {
    border-right: solid 1px #DEDEDF;
    border-bottom: none;
    width: calc(100% / 3);
  }

  .list-point>li:last-child {
    border-right: none;
  }
}

.list-point>li:last-child {
  border-bottom: none;
}

.point-tag {
  background: #0071BE;
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 28px;
  margin: 0 auto 8px;

}

.point dt {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

.point dd {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0 8px;
}

.point dd ul {
  margin-top: 12px;
  list-style-position: inside;
}

@media screen and (min-width: 768px) {
  .point dt {
    margin-bottom: 12px;
  }

  .point dd ul {
    margin-top: 0;
  }
}

.point dd li {
  text-indent: -1.2em;
  margin-bottom: 5px;
  line-height: 1.5em;
}

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

  .point dd li,
  .point dd a {
    font-size: 14px;
  }
}

.point .font-small {
  font-size: 12px;
}

.list-point-note {
  text-align: right;
}

.list-point-note li {
  font-size: 14px;
}

.list-point-note li:first-child {
  margin-bottom: 8px;
}



/*---------------------------------
  　目次
-----------------------------------*/

.t-contents .title-wrap {
  margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
  .t-contents .title-wrap {
    margin-bottom: 5px;
  }
}

.t-contents_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .t-contents_box {
    margin-bottom: 50px;
  }
}

.t-contents_box a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: solid 1px #0071be;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.17);
  color: #0071BE;
  font-weight: bold;
  width: 50%;
  height: 75px;
  padding-bottom: 12px;
}

.contents-wrap {
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .contents-wrap {
    margin-bottom: 50px;
  }
}

.contents-wrap h2 {
  margin-bottom: 14px;
}

/*---------------------------------
  　faq
-----------------------------------*/
.faq {
  margin: 70px auto 55px;
}


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

  .question_area {
    margin-bottom: 28px;
  }
}


.question_area li {
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin-bottom: 1px;
  position: relative;
  border-top: 1px solid #DEDEDF;
  line-height: 1.4 !important;
  cursor: pointer;
  text-indent: -30px;
}

.question_area li:last-of-type {
  border-bottom: 1px solid #DEDEDF;
}

#container .question_area li a {
  display: block;
  color: #222;
  padding: 28px 30px;

}

.question_area li span {
  font-weight: bold;
  color: #3695D7;
  font-size: 20px;
}

.question_area li {
  position: relative;
}

.question_area a::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(../images/icon-blue-arrow-right.png) no-repeat 0 0 / 7px 14px;
  width: 7px;
  height: 14px;
  top: 36px;
  right: 44px;
}

@media (max-width: 767.9px) {
  .question_area a::after {
    right: 5px;
  }
}

.question_content {
  margin-top: 60px;
}

@media (max-width: 767.9px) {
  .question_content {
    margin-top: 45px;
  }
}

.arrow_u {
  position: relative;
  display: inline-block;
}

.arrow_u::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px #0071be;
  border-right: solid 2px #0071be;
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9px;
  margin: auto;
}

@media (max-width: 767.9px) {
  .arrow_u::after {
    width: 10px;
    height: 10px;
  }
}

.arrow_r {
  position: relative;
}

.arrow_r:first-child {}

.arrow_r::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px #0071be;
  border-right: solid 2px #0071be;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.point .arrow_r {
  padding-right: 1.25rem;
  white-space: nowrap;
}

/*--------------------------------------
  　キャンペーン概要
--------------------------------------*/
/* .outline,
.contact {
  width: calc(100% - var(--x-sp-margin));
  margin: auto;
} */

.outline h2 {
  border-bottom: solid 1px #DEDEDF;
  padding-bottom: 12px;
}

@media (min-width: 767.9px) {
  .outline h2 {
    padding-bottom: 12px;
    margin-bottom: 15px;
  }
}

.outline dl {
  padding: 20px 0;
  border-bottom: solid 1px #dedede;
}

.outline dl:first-child {
  padding-top: 0;
}


.outline dt {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.outline .inner-dl {
  padding: 0;
  border: none;
}

.outline .inner-dl dt {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 0;
}

.outline .inner-dl dd {
  margin-bottom: 16px;
}

.square {
  display: inline-block;
  background: #111;
  width: 0.75em;
  height: 0.75em;
  vertical-align: middle;
  margin: 0 5px 3px 0;
}

@media (min-width: 767.9px) {
  .outline dl {
    padding: 24px 0;
  }

  .outline dt {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .outline .inner-dl dt {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .outline .inner-dl dd {
    margin-bottom: 10px;
  }

  .outline .inner-dl dd:last-child {
    margin-bottom: 0;
  }

  .square {
    margin: 0 5px 3px 0;
    width: 1rem;
    height: 1rem;
  }


}

.contact {
  margin: 60px auto 20px;
}

.contact dt {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 16px;
}

.contact dd {
  margin-bottom: 5px;
}

.contact dd a {
  margin: 16px auto 0;
}

@media (min-width: 767.9px) {

  .contact {
    margin: 55px auto 12px;
  }

  .contact dt {
    font-weight: bold;
    margin-bottom: 5px;
  }

  .contact dd {
    margin-bottom: 5px;
  }

  .contact dd a {
    margin: 15px auto 0;
  }
}



/*--------------------------------------
  　注意事項
--------------------------------------*/
.notice_tit {
  padding: 8px 15px;
  background-color: #ccc;
}

#notice_box {
  margin: 0 0 10px;
  width: 960px;
  border: 2px solid #ccc;
}

#notice_box dl {
  margin: 0;
}

#notice_box dt {
  padding: 10px 0 0 15px;
  font-weight: bold;
  float: left;
}

#notice_box dd {
  padding: 10px 10px 10px 210px;
  border-bottom: 1px dashed #ccc;
  line-height: 140%;
  font-size: 15px;
}

#notice_box dd.last {
  border: 0;
}

#notice_box ul {
  margin-left: 0;
}

#notice_box ul li {
  list-style: disc;
  list-style-position: outside;
}

@media screen and (max-width: 768px) {
  .notice_tit {
    padding: 5px 10px;
    font-size: 14px;
    margin: 0 10px;
  }

  #notice_box {
    margin: 0 10px 20px;
    width: auto;
    padding-top: 5px;
    font-size: 15px;
  }

  #notice_box dl {
    margin: 0;
    padding: 3px;
  }

  #notice_box dt {
    float: none;
    padding: 0 0 0 5px;
  }

  #notice_box dd {
    padding: 10px 0px;
  }

  #notice_box ul {
    margin-left: 10px;
  }

  #notice_box ul li {
    list-style: disc;
    list-style-position: outside;
    max-height: 999999px;
  }

  .btn_info {
    margin: 0 10px;
  }
}

@media screen and (max-width: 640px) {
  .notice_tit {
    margin: 0 5px;
    font-size: 16px;
    font-weight: bold;
    padding: 7px 10px;
  }

  #notice_box {
    margin: 0 5px 20px;
    border: 1px solid #ccc;
  }
}



/*--------------------------------------
  　共通キャンペーンの注意事項ボタン
--------------------------------------*/
.btn_info a {
  display: block;
  width: 40%;
  padding: 15px 0;
  margin: 0 auto;
  text-decoration: none;
  border: 1px solid #0071be;
  color: #0071be;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  -webkit-tap-highlight-color: transparent;
  transition: 0.3s ease-out;
}

.btn_info a:hover {
  color: #5fb0e7;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
}

.btn_info a:active {
  -ms-transform: translateY(3px);
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  box-shadow: none;
}

@media screen and (max-width: 768px) {
  .btn_info a {
    width: 90%;
  }
}


/*---------------------------------
  　ページTOP
-----------------------------------*/
/*#page-top {
  bottom: 20px;
  display: block;
  position: fixed;
  margin-left: 980px;
  width: 960px;
}

#page-top img {
  width: 50px;
  height: 50px;
}*/

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

  /*通常ページ*/
  /*#page-top {
    right: 20px;
    width: auto;
    margin-left: 0;
    z-index: 999;
  }*/

  /*/s/ページ*/
  /*#page-top {
    bottom: 100px;
    width:auto;
		margin-left:0;
    right: 20px;
		z-index:5;
	}*/
}

@media screen and (max-width: 640px) {
  /*#page-top img {
    width: 40px;
    height: 40px;
  }*/
}

/*Safariだけに適用されるCSSハック*/
@media screen and (-webkit-min-device-pixel-ratio: 0) {

  ::i-block-chrome,
  #container {

    font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
}



#str_container h3.banzai {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  padding: 0 1.25em;
  font-size: 18px;
}

@media (min-width: 767.9px) {
  #str_container h3.banzai {
    margin-bottom: 8px;
  }
}

.banzai::before,
.banzai::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: black;

}

.banzai::before {
  left: 0;
  -webkit-transform: rotate(-120deg);
  transform: rotate(-120deg);
}

.banzai::after {
  right: 0;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.img-wrapper {
  text-align: center;
  margin: 10px auto;
  width: 95%;
}

@media (min-width: 767.9px) {
  .img-wrapper {
    margin: 12px auto;
    width: 100%;

  }
}

.img-wrapper.img-wrapper--double {
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .img-wrapper.img-wrapper--double {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
  }
}

@media screen and (min-width: 768px) {
  .img-wrapper.img-wrapper--double {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

  }
}

.btn {
  color: #0071be;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #0071be;
  border-radius: 6px;
  max-width: 640px;
  width: 100%;
  height: 44px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin: 20px auto 20px;
}

@media screen and (min-width: 768px) {
  .btn {
    max-width: 350px;
    height: 55px;
  }
}

.bold {
  font-weight: bold;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.txt-red {
  color: #eb4055;
}

.txt-gray {
  color: #434343;
}

.txt-kome {
  font-size: 11px;
  color: #434343;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}