@charset "UTF-8";
/*
 * styles.css
 *
 * 0. import
 * 1. reset（編集不可要素）
 * 2. html, body
 * 3. layout
 *
*/


/*******************
 * 0. import
*/
@import url('https://fonts.googleapis.com/css?family=Pathway+Gothic+One&display=swap');
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap');


/*******************
 * 1. reset（編集不可要素）
*/
  /* 
  html5doctor.com Reset Stylesheet
  v1.6.1
  Last Updated: 2010-09-17
  Author: Richard Clark - http://richclarkdesign.com 
  Twitter: @rich_clark
  */
 
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    font-weight: normal;
    vertical-align:baseline;
    background:transparent;
    list-style: none;
}
 
body {
    line-height:1;
}
 
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}
 
blockquote, q {
    quotes:none;
}
 
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
 
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
 
/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
 
/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}
 
del {
    text-decoration: line-through;
}
 
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
 
table {
    border-collapse:collapse;
    border-spacing:0;
}
 
/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
 
input, select {
    vertical-align:middle;
}


/*******************
 * 2. html, body
*/
body{
  font-family: system-ui, -apple-system, BlinkMacSystemFont,"Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
}


/*******************
 * 3. layout
*/

.page {
  color: #595757;
  font-size: 15px;
  line-height: 1.6;
}
.wrapper {
  /* width: 1024px; */
  margin-left: auto;
  margin-right: auto;
}

article {}
section {}
.inner {}

#header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
#header .wrapper {
  display: flex;
  justify-content: space-between;
  padding: 35px 35px 35px 45px;
  z-index: 10;
}
#global-nav{}
#nav_textlinks > ul {
  display: flex;
  position: relative;
  top: -4px;
}
#nav_textlinks > ul li {
  margin-left: 20px;
  border-left: #000000 solid 2px;
}
#nav_textlinks a {
  padding: 3px 10px 3px 15px;
  display: block;
  line-height: 1em;
  letter-spacing: 0.2em;
  font-size: 19px;
  color: #000000;
  font-family: 'Pathway Gothic One', sans-serif;
  transition: all ease-in-out .2s;
  background-color: transparent;
  text-decoration: none;
}
#nav_textlinks a:hover {
  background-color: #000000;
  color: #ffffff;
}
#sub-nav {}
#container {}
#footer {}

#select-02 #footer {
  background-color: #f7f8f8;
}

#footer.footer {
  padding: 25px 45px;
  box-sizing: border-box;
  text-align: center;
  font-size: 11px;
  color: #b7b7b7;
}
@media screen and (max-width: 768px) {
  .page {
    color: #595757;
    font-size: 12px;
    line-height: 1.6;
  }
  #header {
    overflow: hidden;
    background-color: rgba(255,255,255,.8);
  }
  #header .wrapper {
    padding: 14px;
    align-items: center;
    z-index: 10;
    border-bottom: solid 1px #d9d9d9;
  }
  #nav_textlinks > ul {
    top: -2px;
    position: absolute;
    right: 0;
  }
  #nav_textlinks > ul li {
    margin-left: 0px;
    border-left: #d9d9d9 solid 1px;
  }
  #nav_textlinks a {
    width: 45px;
    height: 45px;
    box-sizing: border-box;
    padding: 30px 5.5px 10px 8px;
    display: block;
    line-height: 1em;
    letter-spacing: 0.2em;
    font-size: 11px;
    justify-content: center;
    text-align: center;
  }
  #nav_textlinks li:first-child a {
    background: url(../../common/svg/icon_home.svg) no-repeat center top 10px / 12px 14px;
  }
  #nav_textlinks li:last-child a {
    background: url(../../common/svg/icon_back.svg) no-repeat center top 9px / 12px 14px;
  }
  #nav_textlinks a:hover {
    background-color: transparent;
    color: #000000;
  }
  #footer.footer {
    padding: 25px 45px;
    box-sizing: border-box;
    text-align: center;
    font-size: 8px;
    color: #b7b7b7;
  }
}

/* modal */
.bg-modal {
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.5);
  z-index: 10;
  opacity: 0;
  transform: scale(.95,.95);
  transition: all ease-in-out .2s;
}
.modal {
  visibility: hidden;
  position: fixed;
  left: 50%;
  top: 50%;
  align-items: center;
  background-color: #ffffff;
  z-index: 11;
  opacity: 0;
  transform: translate(-50%,-50%) scale(.95,.95);
  transition: all ease-in-out .2s;
}
.bg-modal.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1,1);
}
.modal.active {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%,-50%) scale(1,1);
}
.modal-inner {
  width: 1150px;
  height: 500px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 30px;
}
.modal-box {
  padding-top: 30px;
  width: 530px;
  height: 380px;
  border: solid 1px #eeeeee;
  box-sizing: border-box 
}
.modal-check-list {
  height: 284px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.modal-check-list li {
  padding: 18px 20px;
  background-color: #eeeeee;
}
.modal-check-list li:nth-of-type(2n) {
  background-color: #ffffff;
}
.modal-footer {
  display: flex;
  width: 100%;
  height: 93px;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .modal {
    height: calc(100vh - 129px);
  }
  .modal-inner {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 0px;
  }
  .modal-box {
    width: calc(100vw - 30px);
    min-width: 300px;
    height: auto;
    border: none;
  }
  div:first-child.modal-box {
    margin-bottom: 30px;
  }
  .modal-check-list {
    height: calc((100vh - 440px) / 2);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .modal-check-list li {
    padding: 11px 20px 10px;
  }
}

/* summary-list */
.summary-list {
  display: flex;
  background: url(../../common/imgs/dotted.png) repeat-x center center;
}
.summary-list li {
  position: relative;
  height: 68px;
}
.summary-list li::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY( -50%);
  width: 12px;
  height: 25px;
  background: url(../../common/svg/icon_arrow_line.svg) no-repeat center center / 12px 25px;
}
.summary-list li:last-child::after {
  display: none;
}
.summary-list li span {
  display: block;
  position: relative;
  font-size: 12px;
  height: 50px;
  font-family: 'Pathway Gothic One', sans-serif;
  letter-spacing: 1px;
  font-weight: bold;
}
.summary-list li span::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 30px;
  left: 50%;
  top: 19px;
  transform: translateX( -50%);
  background-color: #707070;
}
.summary-list li span::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: 8.5px;
  width: 11px;
  height: 11px;
  transform: translate( -50%, -50%);
  background-color: #707070;
  border-radius: 15px;
}
.summary-list li.active span::after {
  background-color: #e60012;
}
.summary-list li strong {
  display: block;
  font-size: 10px;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
}

.summary-list li:nth-last-child(3),
.summary-list li:nth-last-child(3) ~ li { width: calc(100% / 3);}
.summary-list li:nth-last-child(4),
.summary-list li:nth-last-child(4) ~ li { width: calc(100% / 4);}
.summary-list li:nth-last-child(5),
.summary-list li:nth-last-child(5) ~ li { width: calc(100% / 5);}
.summary-list li:nth-last-child(6),
.summary-list li:nth-last-child(6) ~ li { width: calc(100% / 6);}
.summary-list li:nth-last-child(7),
.summary-list li:nth-last-child(7) ~ li { width: calc(100% / 7);}
.summary-list li:nth-last-child(8),
.summary-list li:nth-last-child(8) ~ li { width: calc(100% / 8);}
.summary-list li:nth-last-child(9),
.summary-list li:nth-last-child(9) ~ li { width: calc(100% / 9);}

.summary-title-area {
  font-weight: bold;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
}
.summary-title-area span {
  position: relative;
  display: inline-block;
  padding-right: 25px;
  padding-left: 20px;
  margin-right: 15px;
  font-size: 15px;
  letter-spacing: 1.5px;
  font-family: 'Pathway Gothic One', sans-serif;
}
.summary-title-area span::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY( -50%);
  width: 9px;
  height: 17px;
  background: url(../../common/svg/icon_arrow_line.svg) no-repeat center center / 9px 17px;
}
@media screen and (max-width: 768px) {
  .summary-list {
    margin-bottom: -10px;
  }
  .summary-list li span {
    font-size: 10px;
  }
  .summary-list li span::before {
    height: 20px;
  }
  .summary-list li::after {
    width: 6px;
    height: 14px;
    background: url(../../common/svg/icon_arrow_line.svg) no-repeat center center / 6px 14px;
  }
  .summary-list li strong {
    display: none;
  } 
  .summary-title-area {
    font-size: 11px;
  }
  .summary-title-area span {
    font-size: 11px;
    padding-left: 0;
    padding-right: 18px;
    margin-right: 5px;
  }
  .summary-title-area span::after {
    width: 9px;
    height: 17px;
    background: url(../../common/svg/icon_arrow_line.svg) no-repeat center center / 6px 8px;
  }
}

/*******************
 * 4. util
*/
.mb30 { margin-bottom: 30px!important;}
.mb60 { margin-bottom: 60px!important;}
.mb90 { margin-bottom: 90px!important;}
.mt135 { margin-top: 135px!important;}
.tac { text-align: center;}