﻿@charset "UTF-8";
/*************************
フォーム関連のスタイルリセット
**************************/
button,
input[type=submit] {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: inherit;
}

input[type=text],
input[type=number],
input[type=tel],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*
layout
*/
/*
color
*/
/*
pxをvwに変換

ウインドウ幅1400pxに対して要素幅50pxの場合
getvw(50,1400)となる
*/
/*
メディアクエリ
記述例
body{
  @include msw('max',1200){
    background-color: red;
  }
}
*/
/*
ICON FONT
*/
/************************************************************
SCREEN ALL
*************************************************************/
/************************************************************
SCREEN SP
*************************************************************/
@media screen and (max-width:767px) {
  .guide-wrapper {
    padding-bottom: 100px;
  }
  .back-btn-support {
    margin: 40px auto 0;
  }
}
/************************************************************
SCREEN PC
*************************************************************/
@media screen and (min-width:768px) {
  .guide-wrapper {
    padding-bottom: 150px;
  }
  .back-btn-support {
    margin: 80px auto 0;
  }
}
/************************************************************
SCREEN ALL
*************************************************************/
/************************************************************
SCREEN SP
*************************************************************/
/************************************************************
SCREEN PC
*************************************************************/
@media screen and (min-width:768px) {
  section.guide {
    display: flex;
    justify-content: space-between;
  }
  section.guide .guide-contents {
    min-width: auto;
    width: 67%;
    margin-left: 8%;
  }
}
/************************************************************
SCREEN ALL
*************************************************************/
/************************************************************
SCREEN SP
*************************************************************/
@media screen and (max-width:767px) {
  section.guide-nav .guide-nav-selected {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 84.6153846154vw;
    border-radius: 8px;
    border: 1px solid #0C3387;
    background: white;
    color: #0C3387;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: "palt" on;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.05em;
    padding: 10px 35px;
  }
  section.guide-nav .guide-nav-selected::before {
    content: "\ea03";
    display: inline-block;
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -0.3em;
    transform: rotate(90deg);
    display: inline-block;
    font-size: 11px;
  }
  section.guide-nav .guide-nav-selector {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    overscroll-behavior-y: none;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.8);
    padding-bottom: 40px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.5s, opacity 0.5s;
  }
  section.guide-nav .guide-nav-selector.show {
    visibility: visible;
    opacity: 1;
  }
  section.guide-nav .guide-nav-selector.show .guide-nav-selector-contents {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s, transform 0.5s;
    transition-delay: 0.5s;
  }
  section.guide-nav .guide-nav-selector .guide-nav-selector-contents {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    will-change: transform;
  }
  section.guide-nav .guide-nav-selector .guide-nav-selector-close {
    color: white;
    padding: 45px 0 20px;
    width: 84.6153846154vw;
    margin: 0 auto;
    text-align: right;
  }
  section.guide-nav .guide-nav-selector .guide-nav-selector-close::before {
    content: "\ea0b";
    display: inline-block;
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    margin-right: 5px;
  }
  section.guide-nav .guide-nav-selector .guide-nav-selector-close::after {
    content: "CLOSE";
    font-family: "Play", sans-serif;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: "palt" on;
    font-size: 14px;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 0.05em;
  }
  section.guide-nav .guide-nav-selector .guide-nav-container {
    border-radius: 8px;
    width: 84.6153846154vw;
    margin: 0 auto;
    background-color: white;
    padding: 40px 5.1282051282vw;
  }
  section.guide-nav .guide-nav-selector .guide-nav-container .guide-nav-title {
    color: #0C3387;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: "palt" on;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
  section.guide-nav ul.nav-level-0 {
    margin: 20px auto 0;
    border-top: 1px solid #CED6E7;
    background-color: white;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-trigger {
    width: 100%;
    padding: 10px 5px;
    display: flex;
    align-items: center;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: "palt" on;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.05em;
    cursor: pointer;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-trigger[aria-expanded=true] {
    background-color: #F2F6FD;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-trigger[aria-expanded=true] .icon {
    transform: rotate(90deg);
  }
  section.guide-nav ul.nav-level-0 > li .accordion-trigger[aria-expanded=true] .icon::before {
    opacity: 0;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-trigger img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 15px;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-trigger .icon {
    position: relative;
    margin: 0 0 0 auto;
    display: block;
    width: 15px;
    height: 15px;
    transition: transform 0.2s;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-trigger .icon::before {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #0C3387;
    position: absolute;
    top: 7px;
    left: 0;
    transition: opacity 0.1s;
    transition-duration: 0.1s;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-trigger .icon::after {
    content: "";
    width: 1px;
    height: 15px;
    background-color: #0C3387;
    position: absolute;
    top: 0;
    left: 7px;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-contents {
    overflow: hidden;
    max-height: 0;
    background-color: white;
    border-bottom: 1px solid #CED6E7;
    transition: 0.3s ease-out;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-contents.open {
    border-bottom: none;
    background-color: #F2F6FD;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-contents ul {
    padding: 5px 1em 20px 60px;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-contents ul li {
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: "palt" on;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-contents ul li .guide-nav-selector-btn {
    width: 100%;
    display: inline-block;
    padding: 5px 0;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-contents ul li .guide-nav-selector-btn.active {
    color: #0C3387;
    font-weight: 700;
  }
  section.guide-nav .out-btn {
    margin-top: 40px;
    width: 100%;
  }
}
/************************************************************
SCREEN PC
*************************************************************/
@media screen and (min-width:768px) {
  section.guide-nav {
    min-width: 270px;
    width: 25%;
  }
  section.guide-nav .guide-nav-selected {
    display: none;
  }
  section.guide-nav .guide-nav-selector .guide-nav-container .guide-nav-title {
    display: none;
  }
  section.guide-nav ul.nav-level-0 {
    border-top: 1px solid #CED6E7;
  }
  section.guide-nav ul.nav-level-0 > li a.accordion-trigger.active {
    color: #0C3387;
    font-weight: 700;
  }
  section.guide-nav ul.nav-level-0 > li a.accordion-trigger:hover {
    color: #0C3387;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-trigger {
    width: 100%;
    padding: 10px 5px;
    display: flex;
    align-items: center;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: "palt" on;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.05em;
    cursor: pointer;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-trigger[aria-expanded=true] {
    background-color: #F2F6FD;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-trigger[aria-expanded=true] .icon {
    transition: transform 0.2s;
    transform: rotate(90deg);
  }
  section.guide-nav ul.nav-level-0 > li .accordion-trigger[aria-expanded=true] .icon::before {
    opacity: 0;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-trigger[aria-expanded=true]:hover {
    background-color: rgba(242, 246, 253, 0.5);
  }
  section.guide-nav ul.nav-level-0 > li .accordion-trigger[aria-expanded=false]:hover {
    color: #0C3387;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-trigger[aria-expanded=false]:hover .icon {
    transition: transform 0.2s;
    transform: rotate(-90deg);
  }
  section.guide-nav ul.nav-level-0 > li .accordion-trigger img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 15px;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-trigger .icon {
    position: relative;
    margin: 0 0 0 auto;
    display: block;
    width: 15px;
    height: 15px;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-trigger .icon::before {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #0C3387;
    position: absolute;
    top: 7px;
    left: 0;
    transition: opacity 0.1s;
    transition-duration: 0.1s;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-trigger .icon::after {
    content: "";
    width: 1px;
    height: 15px;
    background-color: #0C3387;
    position: absolute;
    top: 0;
    left: 7px;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-contents {
    overflow: hidden;
    max-height: 0;
    background-color: white;
    border-bottom: 1px solid #CED6E7;
    transition: 0.3s ease-out;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-contents.open {
    border-bottom: none;
    background-color: #F2F6FD;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-contents ul {
    padding: 5px 1em 20px 60px;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-contents ul li {
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: "palt" on;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-contents ul li .guide-nav-selector-btn {
    display: inline-block;
    width: 100%;
    padding: 5px 0;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-contents ul li .guide-nav-selector-btn.active {
    color: #0C3387;
    font-weight: 700;
  }
  section.guide-nav ul.nav-level-0 > li .accordion-contents ul li .guide-nav-selector-btn:hover {
    font-weight: 700;
  }
  section.guide-nav .out-btn {
    margin-top: 40px;
    width: 100%;
  }
}
/************************************************************
SCREEN ALL
*************************************************************/
.guide-search input[type=text] {
  margin: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.guide-search input:focus {
  box-shadow: 0px 0px 4px 1px rgba(206, 214, 231, 0.75);
}

/************************************************************
SCREEN SP
*************************************************************/
@media screen and (max-width:767px) {
  .guide-search {
    margin-top: 20px;
    border-radius: 4px;
    border: 1px solid #CED6E7;
    width: 100%;
    height: 50px;
    background-color: white;
    position: relative;
  }
  .guide-search form {
    width: 100%;
    height: 100%;
  }
  .guide-search input {
    width: 100%;
    height: 100%;
    font-size: 16px;
    padding: 0 15px;
  }
  .guide-search input::placeholder {
    color: #C0C0C0;
  }
  .guide-search .guide-search-submit {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #0C3387;
  }
  .guide-search .guide-search-submit::after {
    content: "\ea01";
    display: inline-block;
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
/************************************************************
SCREEN PC
*************************************************************/
@media screen and (min-width:768px) {
  .guide-search {
    border-radius: 4px;
    border: 1px solid #CED6E7;
    width: 100%;
    height: 50px;
    background-color: white;
    position: relative;
  }
  .guide-search form {
    width: 100%;
    height: 100%;
  }
  .guide-search input {
    width: 100%;
    height: 100%;
    font-size: 16px;
    padding: 0 15px;
  }
  .guide-search input::placeholder {
    color: #C0C0C0;
  }
  .guide-search .guide-search-submit {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #0C3387;
    cursor: pointer;
  }
  .guide-search .guide-search-submit::after {
    content: "\ea01";
    display: inline-block;
    font-family: "icons";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    transition: filter 0.2s;
  }
  .guide-search .guide-search-submit:hover::after {
    filter: invert(100%);
  }
}
/************************************************************
SCREEN ALL
*************************************************************/
section.guide-faq {
  display: none;
}
section.guide-faq.show {
  display: block;
}
section.guide-faq .faq-boxes-wrap.no-posts {
  display: none;
}
section.guide-faq .guide-faq-no-result {
  display: none;
}
section.guide-faq .guide-faq-no-result.active {
  display: block;
}

/************************************************************
SCREEN SP
*************************************************************/
@media screen and (max-width:767px) {
  section.guide-faq {
    padding: 60px 0 0;
  }
  section.guide-faq .faq-title-txt-01 {
    color: #0C3387;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: "palt" on;
    font-size: clamp(10px, 7.1794871795vw, 28px);
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
  section.guide-faq .faq-title-txt-02 {
    margin-top: 40px;
    color: #0C3387;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: "palt" on;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
  section.guide-faq .faq-boxes {
    margin-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #CED6E7;
  }
  section.guide-faq .faq-box {
    padding-left: 34px;
    border-bottom: 1px solid #CED6E7;
    position: relative;
  }
  section.guide-faq .faq-box::before {
    content: "Q.";
    font-family: "Play", sans-serif;
    color: #0C3387;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: "palt" on;
    font-size: 20px;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 1.4px;
    position: absolute;
    top: 20px;
    left: 0;
  }
  section.guide-faq .faq-box .faq-box-q {
    width: 100%;
    padding: 20px 20px 20px 0;
    font-feature-settings: "palt" on;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.98px;
    text-align: left;
    position: relative;
    cursor: pointer;
  }
  section.guide-faq .faq-box .faq-box-q[aria-expanded=true] .icon {
    transform: rotate(90deg);
  }
  section.guide-faq .faq-box .faq-box-q[aria-expanded=true] .icon::before {
    opacity: 0;
  }
  section.guide-faq .faq-box .faq-box-q .icon {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -7px;
    display: block;
    width: 15px;
    height: 15px;
    transition: transform 0.2s;
  }
  section.guide-faq .faq-box .faq-box-q .icon::before {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #0C3387;
    position: absolute;
    top: 7px;
    left: 0;
    transition: opacity 0.1s;
    transition-duration: 0.1s;
  }
  section.guide-faq .faq-box .faq-box-q .icon::after {
    content: "";
    width: 1px;
    height: 15px;
    background-color: #0C3387;
    position: absolute;
    top: 0;
    left: 7px;
  }
  section.guide-faq .faq-box .accordion-contents {
    overflow: hidden;
    max-height: 0;
    background-color: white;
    transition: 0.2s ease-out;
  }
  section.guide-faq .faq-box .faq-box-a img {
    max-width: 100%;
  }
  section.guide-faq .faq-box .faq-box-a p {
    margin: 20px 0;
    font-feature-settings: "palt" on;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7em;
    letter-spacing: 0.98px;
  }
  section.guide-faq .faq-box .faq-box-a a {
    text-decoration: underline;
  }
  section.guide-faq .out-btn {
    margin: 40px auto 0;
  }
  section.guide-faq .guide-faq-no-result {
    padding: 20px 0;
    font-feature-settings: "palt" on;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.98px;
  }
}
/************************************************************
SCREEN PC
*************************************************************/
@media screen and (min-width:768px) {
  section.guide-faq {
    padding: 60px 0 0;
  }
  section.guide-faq .faq-title-txt-01 {
    color: #0C3387;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: "palt" on;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
  section.guide-faq .faq-title-txt-02 {
    margin-top: 40px;
    color: #0C3387;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: "palt" on;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
  section.guide-faq .faq-boxes {
    margin-top: 20px;
    border-top: 1px solid #CED6E7;
  }
  section.guide-faq .faq-box {
    border-bottom: 1px solid #CED6E7;
    position: relative;
  }
  section.guide-faq .faq-box::before {
    content: "Q.";
    font-family: "Play", sans-serif;
    color: #0C3387;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: "palt" on;
    font-size: 20px;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 1.4px;
    position: absolute;
    top: 20px;
    left: 4px;
    z-index: 10;
  }
  section.guide-faq .faq-box .faq-box-q {
    width: 100%;
    padding: 20px 20px 20px 34px;
    font-feature-settings: "palt" on;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.98px;
    text-align: left;
    position: relative;
    cursor: pointer;
  }
  section.guide-faq .faq-box .faq-box-q[aria-expanded=true] .icon {
    transition: transform 0.2s;
    transform: rotate(90deg);
  }
  section.guide-faq .faq-box .faq-box-q[aria-expanded=true] .icon::before {
    opacity: 0;
  }
  section.guide-faq .faq-box .faq-box-q[aria-expanded=true]:hover {
    background-color: rgba(242, 246, 253, 0.5);
  }
  section.guide-faq .faq-box .faq-box-q[aria-expanded=false]:hover {
    color: #0C3387;
  }
  section.guide-faq .faq-box .faq-box-q[aria-expanded=false]:hover .icon {
    transition: transform 0.2s;
    transform: rotate(-90deg);
  }
  section.guide-faq .faq-box .faq-box-q .icon {
    position: absolute;
    top: 22px;
    right: 0;
    display: block;
    width: 15px;
    height: 15px;
  }
  section.guide-faq .faq-box .faq-box-q .icon::before {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #0C3387;
    position: absolute;
    top: 7px;
    left: 0;
    transition: opacity 0.1s;
    transition-duration: 0.1s;
  }
  section.guide-faq .faq-box .faq-box-q .icon::after {
    content: "";
    width: 1px;
    height: 15px;
    background-color: #0C3387;
    position: absolute;
    top: 0;
    left: 7px;
  }
  section.guide-faq .faq-box .accordion-contents {
    overflow: hidden;
    max-height: 0;
    background-color: white;
    transition: 0.2s ease-out;
  }
  section.guide-faq .faq-box .faq-box-a {
    padding-left: 34px;
  }
  section.guide-faq .faq-box .faq-box-a img {
    max-width: 100%;
  }
  section.guide-faq .faq-box .faq-box-a p {
    margin: 20px 0;
    font-feature-settings: "palt" on;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7em;
    letter-spacing: 0.98px;
  }
  section.guide-faq .faq-box .faq-box-a a {
    text-decoration: underline;
    transition: opacity 0.2s;
  }
  section.guide-faq .faq-box .faq-box-a a:hover {
    opacity: 0.5;
  }
  section.guide-faq .out-btn {
    display: none;
  }
  section.guide-faq .guide-faq-no-result {
    padding: 20px 0;
    font-feature-settings: "palt" on;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.98px;
  }
}
/************************************************************
SCREEN ALL
*************************************************************/
section.guide-init.hide {
  display: none;
}

/************************************************************
SCREEN SP
*************************************************************/
@media screen and (max-width:767px) {
  section.guide-init {
    padding-top: 60px;
  }
  section.guide-init .guide-init-txt-01 {
    text-align: center;
    color: #0C3387;
    font-feature-settings: "palt" on;
    font-size: clamp(10px, 6.1538461538vw, 24px);
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  section.guide-init .guide-init-txt-02 {
    margin-top: 20px;
    font-feature-settings: "palt" on;
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
    letter-spacing: 1.12px;
  }
  section.guide-init .support-links {
    padding-top: 10px;
  }
  section.guide-init .support-links .support-link {
    margin-top: 20px;
    border-radius: 8px;
    border: 1px solid #0C3387;
    background-color: white;
    padding: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0C3387;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: "palt" on;
    font-size: clamp(10px, 4.1025641026vw, 16px);
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
  section.guide-init .support-links .support-link .icons {
    margin-right: 20px;
  }
  section.guide-init .support-links .support-link .icons.icons-manual {
    font-size: 38px;
    transform: translateY(-3px);
  }
  section.guide-init .support-links .support-link .icons.icons-mail {
    font-size: 26px;
    transform: translateY(-1px);
  }
}
/************************************************************
SCREEN PC
*************************************************************/
@media screen and (min-width:768px) {
  section.guide-init {
    padding-top: 60px;
  }
  section.guide-init .guide-init-txt-01 {
    text-align: center;
    color: #0C3387;
    font-feature-settings: "palt" on;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
  section.guide-init .guide-init-txt-02 {
    margin-top: 20px;
    text-align: center;
    font-feature-settings: "palt" on;
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
    letter-spacing: 1.12px;
  }
  section.guide-init .support-links {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  section.guide-init .support-links .support-link {
    border-radius: 8px;
    border: 1px solid #0C3387;
    background-color: white;
    padding: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0C3387;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: "palt" on;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.05em;
    transition: 0.3s;
  }
  section.guide-init .support-links .support-link .icons {
    margin-right: 20px;
  }
  section.guide-init .support-links .support-link .icons.icons-manual {
    font-size: 50px;
    transform: translateY(-3px);
  }
  section.guide-init .support-links .support-link .icons.icons-mail {
    font-size: 36px;
    transform: translateY(-1px);
  }
  section.guide-init .support-links .support-link:hover {
    background-color: #0C3387;
    color: white;
  }
}