@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
body {
  font-size: 16px;
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", "Yu Gothic", sans-serif;
  line-height: 1;
  background: #fff;
}

.inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: content-box;
}
@media screen and (max-width: 1520px) {
  .inner {
    max-width: auto;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: auto;
    padding: 0 20px;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", "Yu Gothic", sans-serif;
}

::-moz-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

/* result
---------------------------------------------------------------*/
.result {
  padding: 70px 0;
  background: url(../img/bg_result.webp) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .result {
    padding: 30px 0;
  }
}
.result > h2 {
  margin-bottom: 50px;
  text-align: center;
}
.result > h2 img {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .result > h2 {
    margin-bottom: 20px;
  }
  .result > h2 img {
    width: 80%;
  }
}

/* scroll
---------------------------------------------------------------*/
.splide__slide img {
  height: auto;
  width: 100%;
}

/* cta
---------------------------------------------------------------*/
.cta_block {
  padding: 30px 15px;
}

.cta {
  text-align: center;
}
.cta img {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .cta img {
    width: 100%;
  }
}
.cta dt {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .cta dt {
    margin-bottom: 10px;
  }
}
.cta dt img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .cta dt img {
    width: 90%;
  }
}
.cta dd a {
  transition: 0.3s;
}
.cta dd a:hover {
  opacity: 0.5;
}

input[type=email] {
  width: 55%;
  height: 60px;
  margin: 0 auto 30px;
  padding: 10px 15px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  border: 3px #999 solid;
  box-sizing: border-box;
  background: #e8f0fe;
}
@media screen and (max-width: 767px) {
  input[type=email] {
    width: 90%;
    height: 50px;
    margin: 0 auto 20px;
  }
}

input[type=email]:focus {
  border: 3px #333 solid;
  outline: 0;
}

input::-moz-placeholder {
  color: #666;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", "Yu Gothic", sans-serif;
}

input::placeholder {
  color: #666;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", "Yu Gothic", sans-serif;
}

button:hover img {
  opacity: 0.5;
  transition: all 0.3s;
}

/* solution
---------------------------------------------------------------*/
.solution {
  padding: 100px;
  background: url(../img/bg_solution.webp) no-repeat left top;
  background-size: cover;
}
@media screen and (max-width: 1000px) {
  .solution {
    padding: 50px 0px;
  }
}
.solution .inner .sol_title {
  line-height: 1.5;
  margin-bottom: 150px;
  font-size: clamp(25px, 3vw, 35px);
  text-align: center;
  font-weight: bold;
  color: #032d8c;
}
@media screen and (max-width: 767px) {
  .solution .inner .sol_title {
    margin-bottom: 100px;
  }
}
.solution .inner .sol_title span {
  background: linear-gradient(transparent 60%, #fcee21 60%);
  display: inline;
}
.solution .inner .sol_title b {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.solution .inner .sol_title b::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #f1af0d;
  border-radius: 50px;
  position: absolute;
  top: -8px;
  left: 15px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .solution .inner .sol_title b::after {
    left: 8px;
  }
}
.solution .inner .solution_block {
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
  gap: 90px 35px;
}
@media screen and (max-width: 767px) {
  .solution .inner .solution_block {
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
  }
}
@media screen and (max-width: 414px) {
  .solution .inner .solution_block {
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
}
.solution .inner .solution_block li {
  padding: 25px 15px;
  background: #fff;
  border-radius: 10px;
  border: 3px #1167b0 solid;
}
.solution .inner .solution_block li .worry_title {
  margin-bottom: -80px;
  text-align: center;
  position: relative;
  top: -80px;
}
.solution .inner .solution_block li .worry_title img {
  width: 35%;
}
.solution .inner .solution_block li .img img {
  width: 100%;
}
.solution .inner .solution_block li .txt {
  line-height: 1.5;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: bold !important;
  text-align: center;
  color: #1b1464;
}

/* point
---------------------------------------------------------------*/
.point {
  padding: 100px 0 50px;
  background: #f0f9ff;
}
@media screen and (max-width: 767px) {
  .point {
    padding: 50px 0 50px;
  }
}
.point .point_title {
  margin-bottom: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point .point_title {
    margin-bottom: 50px;
  }
}
.point .point_title img {
  width: initial;
}
@media screen and (max-width: 900px) {
  .point .point_title img {
    width: 90%;
  }
}
.point .point_title span {
  margin-bottom: 10px;
  display: block;
}
@media screen and (max-width: 900px) {
  .point .point_title span img {
    width: 60%;
  }
}
.point .point_block {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .point .point_block {
    display: block;
  }
}
.point .point_block .point_list > ul {
  margin-top: 12%;
}
.point .point_block .point_list > ul li {
  line-height: 1.3;
  margin-bottom: 25px;
  padding: 8px 0 8px 60px;
  background: url(../img/img_check.webp) no-repeat left center;
  font-size: clamp(16px, 3vw, 23px);
  font-weight: bold;
  color: #042e8d;
}
@media screen and (max-width: 767px) {
  .point .point_block .point_list > ul li {
    margin-bottom: 15px;
    padding: 8px 0 8px 70px;
    background-size: 10% auto;
  }
}
@media screen and (max-width: 560px) {
  .point .point_block .point_list > ul li {
    padding: 8px 0 8px 40px;
  }
}
.point .point_block .point_list > ul li span {
  font-size: clamp(18px, 3vw, 25px);
  background: linear-gradient(transparent 70%, #fcee21 70%);
  display: inline;
}
.point .point_block .point_list > ul li b {
  font-size: clamp(25px, 3vw, 36px);
  font-weight: bold;
}

/* recomend
---------------------------------------------------------------*/
.recomend {
  padding: 100px;
  background: url(../img/bg_recomend.webp) no-repeat left top;
  background-size: 100% auto;
}
@media screen and (max-width: 1000px) {
  .recomend {
    padding: 50px 0px;
  }
}
@media screen and (max-width: 767px) {
  .recomend {
    padding: 50px 0 50px;
    background-repeat: repeat-y;
  }
}
.recomend .inner .re_title {
  line-height: 1.3;
  margin-bottom: 50px;
  padding-top: 150px;
  font-size: clamp(25px, 3vw, 35px);
  text-align: center;
  font-weight: bold;
  color: #032d8c;
  background: url(../img/ico_thumb.webp) no-repeat top center;
}
@media screen and (max-width: 767px) {
  .recomend .inner .re_title {
    margin-bottom: 50px;
    padding-top: 60px;
    background-size: 40px auto;
  }
}
.recomend .inner .re_title span {
  background: linear-gradient(transparent 60%, #fcee21 60%);
  display: inline;
}
@media screen and (max-width: 767px) {
  .recomend .inner .recomend_block li {
    margin-bottom: 20px;
  }
}
.recomend .inner .recomend_block li.mb {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .recomend .inner .recomend_block li.mb {
    margin-bottom: 20px;
  }
}

/* disrecomend
---------------------------------------------------------------*/
.disrecomend {
  padding: 100px;
  background: #fffcee;
  background-size: cover;
}
@media screen and (max-width: 1000px) {
  .disrecomend {
    padding: 50px 0px;
  }
}
@media screen and (max-width: 767px) {
  .disrecomend {
    padding: 50px 0 50px;
  }
}
.disrecomend .inner .dis_title {
  line-height: 1.3;
  margin-bottom: 50px;
  padding-top: 150px;
  font-size: clamp(25px, 3vw, 35px);
  text-align: center;
  font-weight: bold;
  color: #032d8c;
  background: url(../img/ico_exclamation.webp) no-repeat top center;
}
@media screen and (max-width: 767px) {
  .disrecomend .inner .dis_title {
    margin-bottom: 30px;
    padding-top: 60px;
    background-size: 40px auto;
  }
}
.disrecomend .inner .dis_title span {
  background: linear-gradient(transparent 60%, #fcee21 60%);
  display: inline;
}
.disrecomend .inner .dis_txt {
  line-height: 1.5;
  margin-bottom: 100px;
  font-size: clamp(16px, 2vw, 32px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .disrecomend .inner .dis_txt {
    margin-bottom: 50px;
  }
}
.disrecomend .inner .disrecomend_block {
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .disrecomend .inner .disrecomend_block {
    grid-template: repeat(1, 1fr)/repeat(2, 1fr);
    gap: 10px;
  }
}

/* case
---------------------------------------------------------------*/
.case {
  padding: 100px;
  background: url(../img/bg_case.webp) no-repeat left top;
  background-size: cover;
}
@media screen and (max-width: 1000px) {
  .case {
    padding: 50px 0px;
  }
}
@media screen and (max-width: 767px) {
  .case {
    padding: 50px 0 50px;
  }
}
.case .inner .case_title {
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(25px, 3vw, 35px);
  font-weight: bold;
  color: #032d8c;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .case .inner .case_title {
    margin-bottom: 50px;
  }
}
.case .inner .case_title::before, .case .inner .case_title::after {
  content: "";
  width: 70px;
  height: 2px;
  background-color: #1b1464;
}
.case .inner .case_title::before {
  margin-right: 20px;
}
.case .inner .case_title::after {
  margin-left: 20px;
}
.case .inner .case_block {
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(3, 1fr);
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .case .inner .case_block {
    gap: 30px;
    grid-template: repeat(1, 1fr)/repeat(1, 1fr);
  }
}
.case .inner .case_block li a {
  display: block;
  transition: 0.3s;
}
.case .inner .case_block li a:hover {
  opacity: 0.5;
}
.case .inner .case_block li a > h3 {
  margin-bottom: 20px;
}
.case .inner .case_block li a > h3 img {
  box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.4);
}
.case .inner .case_block li a .cliant {
  text-align: center;
}
.case .inner .case_block li a .cliant dt {
  margin-bottom: 15px;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: bold;
  color: #032d8c;
}
.case .inner .case_block li a .cliant dd {
  color: #000;
}

/* feature
---------------------------------------------------------------*/
.feature {
  padding: 100px 0;
  background: #f2f7fa;
}
@media screen and (max-width: 1000px) {
  .feature {
    padding: 50px 0px;
  }
}
@media screen and (max-width: 767px) {
  .feature {
    padding: 50px 0 20px;
  }
}
.feature .fe_title {
  line-height: 1.3;
  margin-bottom: 150px;
  font-size: clamp(25px, 3vw, 35px);
  text-align: center;
  font-weight: bold;
  color: #032d8c;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .feature .fe_title {
    margin-bottom: 70px;
  }
}
.feature .fe_title span {
  display: inline-block;
  position: relative;
  /* テキスト用の疑似要素でlinear-gradientを適用 */
  /* 画像用の疑似要素 */
}
.feature .fe_title span::before {
  content: "";
  background: linear-gradient(transparent 60%, #fcee21 60%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* gradientを背面に */
  pointer-events: none;
}
.feature .fe_title span::after {
  content: "";
  background-image: url("../img/ico_light.webp");
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: left center;
  width: 180px;
  height: 185px;
  position: absolute;
  top: -60px;
  left: -100px;
  z-index: -2; /* 画像を最背面に */
  display: block;
}
@media screen and (max-width: 767px) {
  .feature .fe_title span::after {
    width: 80px;
    height: 85px;
    top: -20px;
    left: -20px;
  }
}
.feature .fe_title b {
  font-size: clamp(35px, 3vw, 45px);
}
.feature .feature_block:nth-child(even) {
  margin-bottom: 100px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .feature .feature_block:nth-child(even) {
    margin-bottom: 50px;
    padding: 0 20px;
    display: block;
  }
}
.feature .feature_block:nth-child(even) li:first-child {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .feature .feature_block:nth-child(even) li:first-child {
    width: auto;
    margin-bottom: 20px;
  }
}
.feature .feature_block:nth-child(even) li:last-child {
  padding-top: 30px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .feature .feature_block:nth-child(even) li:last-child {
    padding-top: 0px;
  }
}
.feature .feature_block:nth-child(even) li:last-child > h3 {
  margin-bottom: 20px;
  text-align: left;
  display: block;
}
.feature .feature_block:nth-child(even) li:last-child > h3 img {
  width: 93%;
}
@media screen and (max-width: 767px) {
  .feature .feature_block:nth-child(even) li:last-child > h3 {
    display: none;
  }
}
.feature .feature_block:nth-child(even) li:last-child > h4 {
  line-height: 1.3;
  margin-bottom: 10px;
  padding-left: 30px;
  font-size: clamp(20px, 3vw, 35px);
  font-weight: 900;
  color: #09588c;
}
.feature .feature_block:nth-child(even) li:last-child > h4 span {
  background: linear-gradient(transparent 70%, #fcee21 70%);
  display: inline;
}
.feature .feature_block:nth-child(even) li:last-child > h4 b {
  font-size: clamp(30px, 4vw, 50px);
}
@media screen and (max-width: 767px) {
  .feature .feature_block:nth-child(even) li:last-child > h4 {
    padding-left: 0px;
  }
  .feature .feature_block:nth-child(even) li:last-child > h4 br {
    display: none;
  }
}
.feature .feature_block:nth-child(even) li:last-child > p {
  line-height: 1.3;
  padding-left: 30px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .feature .feature_block:nth-child(even) li:last-child > p {
    padding-left: 0px;
  }
  .feature .feature_block:nth-child(even) li:last-child > p br {
    display: none;
  }
}
.feature .feature_block:nth-child(even) li:last-child::after {
  content: "Features";
  padding-left: 30px;
  color: #fff;
  font-size: clamp(35px, 6vw, 170px);
  font-weight: 900;
  font-style: italic;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .feature .feature_block:nth-child(even) li:last-child::after {
    padding-left: 0px;
    bottom: -20px;
  }
}
.feature .feature_block:nth-child(odd) {
  margin-bottom: 100px;
  flex-direction: row-reverse;
  display: flex;
}
@media screen and (max-width: 767px) {
  .feature .feature_block:nth-child(odd) {
    margin-bottom: 50px;
    padding: 0 20px;
    display: block;
  }
}
.feature .feature_block:nth-child(odd) li:first-child {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .feature .feature_block:nth-child(odd) li:first-child {
    width: auto;
    margin-bottom: 20px;
  }
}
.feature .feature_block:nth-child(odd) li:last-child {
  padding-top: 30px;
  flex: 0 auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .feature .feature_block:nth-child(odd) li:last-child {
    padding-top: 0px;
  }
}
.feature .feature_block:nth-child(odd) li:last-child > h3 {
  margin-bottom: 20px;
  text-align: right;
  display: block;
}
@media screen and (max-width: 767px) {
  .feature .feature_block:nth-child(odd) li:last-child > h3 {
    display: none;
  }
}
.feature .feature_block:nth-child(odd) li:last-child > h3 img {
  width: 93%;
}
.feature .feature_block:nth-child(odd) li:last-child > h4 {
  line-height: 1.3;
  margin-bottom: 10px;
  padding-left: 30px;
  font-size: clamp(20px, 3vw, 35px);
  font-weight: 900;
  color: #09588c;
}
.feature .feature_block:nth-child(odd) li:last-child > h4 span {
  background: linear-gradient(transparent 70%, #fcee21 70%);
  display: inline;
}
@media screen and (max-width: 767px) {
  .feature .feature_block:nth-child(odd) li:last-child > h4 {
    padding-left: 0px;
  }
  .feature .feature_block:nth-child(odd) li:last-child > h4 br {
    display: none;
  }
}
.feature .feature_block:nth-child(odd) li:last-child > p {
  line-height: 1.3;
  padding-left: 30px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .feature .feature_block:nth-child(odd) li:last-child > p {
    padding-left: 0px;
  }
}
.feature .feature_block:nth-child(odd) li:last-child::after {
  content: "Features";
  padding-left: 30px;
  color: #fff;
  font-size: clamp(35px, 6vw, 170px);
  font-weight: 900;
  font-style: italic;
  position: absolute;
  left: -80px;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .feature .feature_block:nth-child(odd) li:last-child::after {
    padding-left: 0px;
    left: -10px;
    bottom: -5px;
  }
}

/* faq
---------------------------------------------------------------*/
.faq {
  padding: 100px;
  background: url(../img/bg_faq.webp) no-repeat left top;
  background-size: cover;
}
@media screen and (max-width: 1000px) {
  .faq {
    padding: 50px 0px;
  }
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 50px 0 50px;
  }
}
.faq .inner .faq_title {
  line-height: 1.3;
  margin-bottom: 15px;
  font-size: clamp(35px, 5vw, 90px);
  text-align: center;
  font-weight: bold;
  color: #032d8c;
}
.faq .inner .faq_title span {
  background: linear-gradient(transparent 70%, #fcee21 70%);
  display: inline;
}
.faq .inner .sub_head {
  margin-bottom: 100px;
  text-align: center;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .faq .inner .sub_head {
    margin-bottom: 50px;
  }
}
.faq .inner .faq_item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .faq .inner .faq_item {
    margin-bottom: 30px;
  }
}
.faq .inner .faq_item .faq_question {
  background-image: linear-gradient(90deg, #014967, #1973d0);
  color: #fff;
  display: flex; /* Flexboxを維持 */
  align-items: center;
  /* justify-content: space-between; */ /* この指定を削除または変更 */
  padding: 20px 24px;
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}
.faq .inner .faq_item .faq_question .label {
  margin-right: 10px;
  font-size: 24px;
  font-weight: bold;
  /* labelとtextの間に固定のスペースが必要な場合は、ここに追加 */
  flex-shrink: 0; /* labelの幅が縮まないようにする */
}
.faq .inner .faq_item .faq_question .text {
  line-height: 1.6;
  text-align: left; /* テキストの左寄せを明示的に指定 */
  flex-grow: 1; /* 残りのスペースを全て占有 */
  margin-right: 10px; /* アイコンとの間に少しスペースを設ける場合 */
}
.faq .inner .faq_item .faq_question .toggle_icon {
  font-size: 24px;
  transition: transform 0.3s;
  flex-shrink: 0; /* アイコンの幅が縮まないようにする */
}
.faq .inner .faq_item .faq_answer {
  padding: 20px 24px;
}
.faq .inner .faq_item .faq_answer p {
  color: #042e8d;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6;
  display: flex;
}
@media screen and (max-width: 767px) {
  .faq .inner .faq_item .faq_answer p br {
    display: none;
  }
}
.faq .inner .faq_item .faq_answer p strong {
  margin-right: 10px;
  font-size: 24px;
  font-weight: bold;
}

/* footer
---------------------------------------------------------------*/
.footer {
  padding: 60px 20px 20px;
  background-image: linear-gradient(90deg, #014967, #1973d0);
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 20px 20px;
  }
}
.footer .footer_navi {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer .footer_navi {
    margin-bottom: 30px;
  }
}
.footer .footer_navi li {
  margin-bottom: 20px;
}
.footer .footer_navi li a {
  color: #fff;
  font-size: clamp(14px, 1.2vw, 26px);
  transition: 0.3s;
}
.footer .footer_navi li a:hover {
  opacity: 0.5;
}
.footer .copy_right {
  text-align: center;
  color: #fff;
  font-size: clamp(12px, 1vw, 20px);
}

/* 
-------------------------------------------------------------------

low

------------------------------------------------------------------- */
.low_title {
  line-height: 1.3;
  margin: 50px 0;
  font-size: clamp(25px, 3vw, 35px);
  text-align: center;
  font-weight: bold;
  color: #032d8c;
}

.low_inner {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .low_inner {
    width: auto;
    margin: 0 15px;
  }
}

.back_button a {
  width: 230px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  padding: 15px 5px;
  text-align: center;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: bold;
  color: #fff;
  border-radius: 50px;
  display: block;
  background-image: linear-gradient(90deg, #014967, #1973d0);
  text-decoration: none !important;
  transition: 0.3s;
}
.back_button a:hover {
  opacity: 0.5;
}

/* 
-------------------------------------------------------------------

privacypolicy

------------------------------------------------------------------- */
.privacy h3 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: bold;
  border-bottom: 1px #032d8c solid;
}
.privacy p {
  line-height: 1.8;
}
.privacy p a {
  text-decoration: underline;
}
.privacy p a:hover {
  text-decoration: none;
}
.privacy .mb20 {
  margin-bottom: 20px;
}
.privacy .mb50 {
  margin-bottom: 50px;
}
.privacy .list_terms li {
  line-height: 1.5;
  margin-left: 20px;
  margin-bottom: 10px;
  word-break: break-all;
  list-style: auto;
}
.privacy .indent {
  text-indent: -0.9em;
  padding-left: 0.9em;
}
.privacy .sub_indent {
  margin-left: 20px;
}
.privacy .sub_indent2 {
  margin-left: 40px;
}

/* 
-------------------------------------------------------------------

transactions

------------------------------------------------------------------- */
.table {
  width: 100%;
  margin-bottom: 50px;
  border: 1px solid #ccc;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .table {
    margin-bottom: 50px;
  }
}
.table th {
  width: 200px;
  line-height: 1.5;
  text-align: left;
  background: #eee;
  padding: 15px 15px;
  border: 1px solid #ccc;
  vertical-align: middle;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .table th {
    width: 120px;
  }
}
.table td {
  line-height: 1.5;
  padding: 15px 15px;
  border: 1px solid #ccc;
  vertical-align: middle;
}