@charset "UTF-8";
:root{
  --skyblue: #00b0f0;
  --beige: #fff7ef;
}
html{
	font-size: 16px;
}
body {
	color: #333;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	max-width: 750px;
    margin: 0 auto;
	line-height: 1.6;
	background: #f9f9f9;
}
h2 {
  background-image: linear-gradient(#EB5505, #ff7f50);
  color: #fff;
  padding: 0.5em;
  line-height: 1;
  font-size: 1.25rem;
  font-weight: bold;
  width: 96%;
  margin: 0 auto;
  border-radius: 6px;
}
h3 {
  font-weight: bold;
  font-size: 17px;
}
img {
  width: 100%;
  height: auto;
}
.bd-b {
  border-bottom: solid 1px #ccc;
}
.col-red {
  color: #c00;
}
.col-orange {
  color: #eb5505;
}
.bg-white{
  background: #fff;
}
.bg-gray {
  background: #f2f2f2;
}
.bg-beige {
  background: var(--beige);
}
.no-indent {
  text-indent: 0 !important;
  margin-left: 0 !important;
}
.indent {
  text-indent: -1em !important;
  margin-left: 1em !important;
}
.df {
  display: flex;
}
.df .ws-nowrap {
  white-space: nowrap;
}
.dib {
  display: inline-block;
}
.fwb {
  font-weight: bold;
}
.tac {
  text-align: center;
}
.tar {
  text-align: right;
}
.link-blue {
  color: #0072c4;
  text-decoration: underline;
  font-weight: bold;
  word-wrap: break-word;
}
.vh{
  visibility: hidden;
}
img {
  width: 100%;
  height: auto;
}
i {
  font-style: normal;
}

/* adjustment */
.mt0 {
  margin-top: 0 !important;
}
.mt025e {
  margin-top: 0.25em !important;
}
.mt05e {
  margin-top: 0.5em !important;
}
.mt1e {
  margin-top: 1em !important;
}
.mt2e {
  margin-top: 2em !important;
}
.mt3e {
  margin-top: 3em !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mb025e {
  margin-bottom: 0.25em !important;
}
.mb05e {
  margin-bottom: 0.5em !important;
}
.mb1e {
  margin-bottom: 1em !important;
}
.mb2e {
  margin-bottom: 2em !important;
}
.mb3e {
  margin-bottom: 3em !important;
}
.ml1e {
  margin-left: 1em !important;
}

/***** header *****/
header {
  position: fixed;
  top: 0;
  left: 0;
  /* padding: 10px 20px 10px 10px; */
  border-bottom: solid 2px #eb5505;
  height: 52px;
  width: 100%;
  background: #fff;
  z-index: 1;
}
header .au-logo {
  width: 60px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.menu-wrapper {
  position: relative;
}
.menu-icon {
  width: 30px;
  height: 20px;
  position: fixed;/* fixedにして常に右上固定 */
  top: 10px;
  right: 20px;
  cursor: pointer;
  z-index: 3;
  display: inline-block;
}
.menu-icon span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #eb5505;
  border-radius: 2px;
  transition: 0.4s;
}

/* ハンバーガーがXに変形 */
#menu-toggle:checked+.menu-icon span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
#menu-toggle:checked+.menu-icon span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked+.menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* オーバーレイ背景 */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 1;
}
#menu-toggle:checked~.overlay {
  opacity: 1;
  pointer-events: auto;
}

/* メニュー本体（右から）*/
.menu {
  position: fixed;
  top: 0;
  right: -260px;/* 初期位置を右へ */
  width: 260px;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease;
  overflow-y: auto;
  z-index: 2;
}
.scroll-head-fixed{
  background: #fff;
  position: fixed;
  top: 0;
  right: -260px;
  width: 260px;
  height: 60px;
  transition: right 0.4s ease;
  z-index: 1;
}

/* ハンバーガー展開時 */
body:has(#menu-toggle:checked){
  overflow: hidden;
}
.menu-wrapper:has(#menu-toggle:checked) .scroll-head-fixed, #menu-toggle:checked~.menu {
  right: 0; /* 開いたときは右0へ */
}

.menu ul {
  list-style: none;
  padding: 60px 0;
}
.menu li {
  border-bottom: solid 1px #ccc;
}
.menu a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
  display: block;
  padding: 10px 16px;
  position: relative;
}

/* サブメニューの初期状態 */
ul.sub-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  padding: 0;
  margin-left: 1em;
}
ul.sub-menu li {
  border: none;
}

/* 開いたときのスタイル */
ul.sub-menu.open {
  max-height: 500px;
  opacity: 1;
}
.has-submenu>a {
  position: relative;
}
.has-submenu>a:before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-bottom: solid 1px #333;
  border-right: solid 1px #333;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
.has-submenu:has(.open)>a:before {
  transform: translateY(-50%) rotate(-135deg);
}

/***** contents *****/
main {
  max-width: 750px;
  margin: 52px auto 0;
  background: #fff;
}
section+section{
  margin-top: 2em;
  padding-top: 1em;
}
.inner{
  padding: 1em;
}

.sec001{
  background: var(--beige);
  margin-top: 0;
}
.anc-diff{
  position: relative;
  display: block;
  text-align: center;
  background: #fff;
  border: solid 1px #ccc;
  border-radius: 6px;
  line-height: 1;
  max-width: 320px;
  padding: 1em 0;
  margin: 0 auto;
}
.anc-diff:after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-right: solid 2px #333;
  border-bottom: solid 2px #333;
  position: absolute;
  right: 20px;
  top: calc(50% - 0.125em);
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
/* logo-area */
.logo-area-wrap{
	padding: 1em;
  background: #fff;
}
.logo-area-wrap .logo-area{
	border: solid 1px #ccc;
	border-radius: 6px;
	padding: 1em;
}
.anc-list-wrap{
  background: #fff;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .anc-list-wrap{
    justify-content: center;
  }
}
.anc-list{
  background: #fff;
  /* width: 48%; */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .anc-list{
    max-width: 560px;
  }
  /* .anc-list:last-of-type{
    margin-left: 2em;
  } */
}
.anc-list li{
  text-align: center;
  border: 1px solid #555;
  border-radius: 6px;
  /* width: 100%; */
  width: 48%;
  margin-bottom: auto;
}
.anc-list li+li{
  margin-top: 1em;
}
.anc-list li a{
  display: block;
  padding: 0.75em;
  font-size: 0.8rem;
  color: #555;
  position: relative;
  font-weight: bold;
}
.anc-list li a:after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-right: solid 2px #555;
  border-bottom: solid 2px #555;
  position: absolute;
  right: 10px;
  top: calc(50% - 0.125em);
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
.three-point-txt-wrap{
  padding: 2em 3em;
}
}
.three-point-txt{
  color: #eb5505;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2em;
}
.three-point-txt:last-of-type{
  margin-bottom: 0;
}
.three-point-txt p{
  width: 75%;
}
.three-point-txt span{
  margin-right: 1em;
  white-space: nowrap;
  width: calc(25% - 1em);
}
.sec002-notice{
  /* display: flex; */
  font-size: 0.9rem;
  background: #fff;
  padding: 1em 1em 0 2em;
}

.sec003-box1{
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .sec003-box1{
    padding: 0 3em;
  }
}
.sec003-box1 p{
  width: 60%;
}
.sec003-box1 img{
  width: calc(40% - 1em);
}

.sec003-table{
  width: 100%;
  max-width: 560px;
  table-layout: fixed;
  border-collapse: collapse;
  margin: 2em auto 0;
  font-size: 0.9rem;
}
.sec003-table th, .sec003-table td{
  padding: 0.5em;
  border: solid 1px #ccc;
}
.sec003-table th{
  text-align: center;
  color: #fff;
}
.sec003-table th:nth-of-type(1){
  background: #595959;
  border-color: #595959;
}
.sec003-table th:nth-of-type(2){
  background: #eb5505;
  border-color: #eb5505;
}
.sec003-table td[colspan]{
  font-weight: bold;
  text-align: center;
  border-top: none;
  border-bottom: none;
  padding-bottom: 0.25em;
}
.sec003-table td:nth-of-type(1):not([colspan]){
  background: #ddd;
}
.sec003-table td:nth-of-type(2):not([colspan]){
  background: #fdeee6;
}
.sec003-notice {
    font-size: 0.9rem;
    margin-top: 1em;
}

.sec004-box1{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1em;
}
.sec004-box1 span {
    margin-right: 1em;
    white-space: nowrap;
    width: calc(30% - 1em);
}
.sec004-box1 p {
    width: 70%;
    border: solid 2px #ccc;
    border-radius: 6px;
    padding: 1em;
    background: #fff;
}

.sec004-list li{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #555;
}
.sec004-list li+li{
  margin-top: 0.5em;
}
.sec004-list li > div{
  width: 48%;
  text-align: center;
}
.sec004-list .arrow{
  text-align: center;
  font-size: 1.5em;
}
.sec004-list .receive{
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: bold;
}
.sec004-list .receive p{
  background: #fff;
  padding: 0.5em 0.25em;
  border-radius: 6px;
  height: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec004-list .receive .left p{
  border: solid 2px #eb5505;
}
.sec004-list .receive .right p{
  border: solid 2px #9999ff;
}
.sec004-list img{
  max-width: 200px;
}
.sec004-list2 > div{
  padding: 0.5em;
  border-radius: 6px;
  background: #fff;
  text-align: left;
}
.sec004-list2 > div span{
  display: block;
  text-align: center;
  font-weight: bold;
}
.sec004-list2 .left{
  border: solid 2px #eb5505;
  text-align: left;
}
.sec004-list2 .right{
  border: solid 2px #9999ff;
  text-align: left;
}
.sec004-notice {
    font-size: 0.9rem;
    margin-top: 1em;
    display: flex;
}

.sec005-box1{
    overflow: hidden;
}
@media screen and (min-width: 769px) {
  .sec005-box1{
    padding: 1em 3em 0.5em;
  }
}
.sec005-box1 img{
  float: right;
}
.sec005-box1 img {
    width: 40%;
    padding-left: 0.5em;
}
.sec005-box2 p{
  margin-top: 1em;
  padding: 0.75em;
  border-radius: 6px;
  border: solid 1px #ccc;
}
.sec005-table{
  width: 100%;
  max-width: 460px;
  border-collapse: collapse;
  table-layout: fixed;
  margin: 1em auto;
  background: #fff;
}
.sec005-table th,.sec005-table td{
  text-align: center;
  border: solid 1px #ccc;
  font-weight: bold;
}
.sec005-table th{
  background: #595959;
  color: #fff;
  padding: 1em;
}
.sec005-table td{
  font-size: 2em;
  padding: 0.25em;
  color: #eb5505;
}
.sec005-table td span{
  font-size: 70%;
}
.sec005-notice{
  font-weight: bold;
  color: #555;
  padding: 1em;
  border-radius: 6px;
}
.sec005-notice span{
  color: #555;
}
.sec005-jusetsu-link a{
  display: inline-block;
  margin-top: 2em;
  position: relative;
  padding-right: 2em;
  line-height: 1;
  text-decoration: underline;
}
.sec005-jusetsu-link a:after {
    content: "";
    width: 0.5em;
    height: 0.5em;
    border-right: solid 2px #555;
    border-bottom: solid 2px #555;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.sec006-list .num{
	font-weight: bold;
	font-size: 1.25rem;
	display: flex;
    align-items: center;
	border-bottom: solid 1px #ccc;
	line-height: 1.2;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
}
.sec006-list .num span{
	padding-right: 0.25em;
	font-size: min(8vw, 40px);
}
.sec006-list .num span.n01,.sec006-list .num span.n02, .sec006-list .num span.n03{
	color: #eb5505;
}
.sec006-list{
	background: #fff;
	padding: 1em;
	border: solid 2px #ccc;
	border-radius: 10px;
	position: relative;
  max-width: 590px;
  margin: 0 auto;
}
.sec006-list ul li{
	display: flex;
}
.sec006-list ul li.adj01{
	font-size: 90%;
	margin-top: 0;
  flex-direction: column;
}
.sec006-list ul li .adj02{
  margin-left: 1em;
}
.sec006-list ul li+li{
	margin-top: 0.25em;
}
.sec006-list ul li span{
	white-space: nowrap;
}
.sec006-list ul li img{
  /* width: 40%; */
  width: 36%;
  margin-left: 1em;
  max-width: 160px;
}

.triangle {
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 30px solid transparent;
	border-left: 30px solid transparent;
	border-top: 20px solid #aaa;
	border-bottom: 0;
	margin: 0.75em auto;
}
@media screen and (min-width: 769px) {
	.triangle{
	border-right: 50px solid transparent;
	border-left: 50px solid transparent;
	border-top: 30px solid #aaa;
	}
}

/* よくあるご質問 */
.sec007 h3{
  font-size: 1rem;
  margin: 0 auto 0.5em;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .sec007 h3 {
    width: 82%;
  }
}
.sec007 h3:nth-of-type(n+2){
  margin-top: 1.5em;
}

.accordion-faq {
  background: #fff;
  border-radius: 5px;
  position: relative;
  width: 100%;
  margin: 0 auto 10px;
  border: solid 1px #ccc;
}
@media screen and (min-width: 769px) {
  .accordion-faq {
      width:82%
  }
}
.accordion-faq.active {
  padding-bottom: .5em
}
.accordion-faq .summary {
  display: block;
  position: relative;
  padding: 1em 2em 1em 2.8em;
  cursor: pointer;
  background: #fff;
  border-radius: 5px;
  list-style: none;
}
.accordion-faq .summary::after,.accordion-faq .summary::before {
  content: "";
  width: 1em;
  height: 2px;
  position: absolute;
  right: .5em;
  top: 50%;
  background: #eb5505;
  border-radius: 1px
}
.accordion-faq .summary::before {
  transition: .2s;
  transform: rotate(90deg)
}
.accordion-faq.active .summary::before {
  transition: .2s;
  transform: rotate(0)
}
.accordion-faq .summary i {
  position: absolute;
  left: .4em;
  top: .6em
}
.accordion-faq .summary i:before {
  content: "Q";
  color: #fff;
  background: #eb5505;
  font-style: normal;
  width: 2em;
  height: 2em;
  line-height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%
}
.accordion-faq .ans-wrap {
  display: none;
  margin: 0 0.5em 0;
  padding: 1em;
  background: #fff;
  border-radius: 5px;
  position: relative
}
.accordion-faq .ans-wrap:before{
  content: "";
  width: 100%;
  border-top: dashed 1px #ccc;
  position: absolute;
  top: 0;
  left: 0;
}
.accordion-faq .ans-wrap:after {
  content: "A";
  color: #fff;
  background: #00b0f0;
  font-style: normal;
  width: 2em;
  height: 2em;
  line-height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  left: -.1em;
  top: 0.8em;
  font-weight: 600
}
.accordion-faq .ans-inner {
  padding-left: 1.3em;
}
.accordion-faq p+p {
  margin-top: .25em
}
.accordion-faq p.faq-mt0 {
  margin-top: 0
}
.accordion-faq p:has(span) {
  display: flex
}
.accordion-faq p span {
  white-space: nowrap
}
.accordion-faq p a {
  color: #06a;
  position: relative;
  overflow-wrap: anywhere;
}

/***** フローティング *****/
.fixed-button{
  display: none;
  position: fixed;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 7px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 769px) {
  .fixed-button{
    background: none;
    box-shadow: none;
  }
}
.fixed-button a{
  display: block;
  padding: 0.5em;
  background: #eb5505;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 10px;
  position: relative;
}
.fixed-button a:after {
  content: "";
  display: block;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  width: .5em;
  height: .5em;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 769px) {
  .fixed-button{
    width: auto;
    right: 10px;
    bottom: 5px;
  }
  .fixed-button a{
    padding: 0.5em 2em;
    border-radius: 10px;
    border-radius: 3em;
    font-size: 1.25rem;
  }
}

/***** chatbot *****/
/* ハンバーガー展開時：非表示 */
body:has(#menu-toggle:checked) iframe#bedore-webagent-inner {
  display: none;
}

/***** footer *****/
footer {
  background: #f1f1f1;
  padding: 10px 4% 140px;
}
.footer-list {
	width: 100%;

}
.footer-list li {
	font-size: 16px;
	font-weight: bold;
	border-bottom: 1px solid #d1d1d1;
	position: relative;
	padding: 6px 4%;
	display: block;
}
.footer-list li:not(.not-open) {
	cursor: pointer;
}
.footer-list li.not-open {
	font-size: 14px;
}
.footer-list li.not-open p {
	font-weight: normal;
}
.footer-list li:not(.not-open):before {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	background: url(../img/open_logo.png) 0 0 no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 4%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.footer-list li a {
	position: relative;
	width: 100%;
	display: block;
}
.footer-logo {
  width: 92px;
  margin: 18px auto 12px;
}
.copy-right {
  font-size: 10px;
  color: #0e0d6a;
  text-align: center;
  padding-bottom: 10px;
}