@charset "utf-8";
/*=================================
style.css
1: reset-CSS(HTML5 Reset Stylesheet)
2: setting
3: root
4: parts (title,list,table,icon,etc)
5: layout
  -header
  -gnav
  -footer
6: contents
=================================*/

/* 1: reset-CSS(HTML5 Reset Stylesheet)
================================== */
/*
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, 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%;
  vertical-align:baseline;
  background:transparent;
  font-weight: normal;
}
body {
  line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,main {
  display:block;
}
nav ul,
ul {
  list-style:none;
}
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: setting
================================== */
*, *:before, *:after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;/* 1rem = 10px */
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  scroll-margin-top: 100px;
}
@media print, screen and (min-width: 768px) {
  html {
    overflow: auto;
    min-width: var(--content-min-width);
  }
}
body {
  width: 100%;
  font-family: var(--font-base);
  font-feature-settings : "palt";
  color: var(--text);
  font-size: var(--font-size--md);
  font-weight: 500;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;/* safari_textBold*/
  -webkit-text-size-adjust: 100%;/* safari_textBold*/
}
@media all and (-ms-high-contrast:none){
  body {font-family:'Noto Sans JP', sans-serif, Meiryo, 'ヒラギノ角ゴ Pro W3', メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;}
}
@media print, screen and (min-width: 768px) {
  body {
    font-size: var(--font-size--lg);
    min-width: var(--content-min-width);
  }
}

/* リンク設定*/
a {
  color: var(--link);
  text-decoration: underline;
}
a:hover {
  color: var(--link-hover);
  text-decoration: none;
}

/* フォームスタイルの完全初期化*/
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  line-height: 1;
  font-family : inherit;
  font-size   : 100%;
}
@media screen and (max-width: 699px) {
input, button, textarea, select {
  max-width: 100%;
}
}/*@media*/

input[type="text"],
select {
  padding: 4px;
  line-height: 1.6;/*iOS*/
  height: 32px;
  vertical-align: top;
}

button,
input[type="submit"] {
  border-radius: 0;
  background: #003680;
  color: #FFF;
  padding: 8px;
}

/*IE10以降のフォーム内の要素を非表示*/
input::-ms-clear {visibility:hidden}
input::-ms-reveal {visibility:hidden}

/* clearfix*/
.cf:after { content: ""; clear: both; display: block; }
.clear { clear: both;}

/* display none*/
.sp_none {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .pc_none {
    display: none;
  }
  .sp_none {
    display: block;
  }
}

/* 3: root
================================== */
:root {
  --primary: #14395B;
  --primary-rgb: 20, 57, 91;
  --text: #222;
  --text-gray: #3B4043;
  --text-red: #E6001D;
  --bg-gray: #F4F4F4;
  --bg-white-rgba: rgba(255, 255, 255, 0.9);
  --link: #01ABC6;
  --link-hover: #3aa9ef;
  --border-gray: #c9c9c9;
  --color-accent1: #a7be18;
  --filter-drop-shadow: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
  --filter-drop-shadowW: drop-shadow(1px 2px 4px rgba(255,255,255,0.5));
}

:root {
  --font-base: 'Noto Sans JP', sans-serif, 'Yu Gothic', '游ゴシック', '游ゴシック体', YuGothic, Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  --font-size--x2s: 1.0rem;
  --font-size--xs: 1.2rem;
  --font-size--sm: 1.4rem;
  --font-size--md: 1.5rem;
  --font-size--lg: 1.6rem;
  --font-size--xl: 1.8rem;
  --font-size--x2l: 2.1rem;
  --font-size--x3l: 2.4rem;
  --font-size--x4l: 2.8rem;
  --font-size--x5l: 3.2rem;
  --font-size--x6l: 4rem;
  --font-size--x7l: 4.8rem;
  --font-size--x8l: 6.4rem;
}

:root {
  --mv-max-width: 1480px;
  --content-max-width: 1280px;
  --content-min-width: 1000px;
  --content-width: 88%;
  --side-margin-pc: 80px;
  --side-margin-sp: 16px;
  --vertical-margin-pc: 56px;
  --vertical-margin-sp: 40px;
  --top-margin-pc: 56px;
  --top-margin-sp: 40px;
  --bottom-margin-pc: 80px;
  --bottom-margin-sp: 40px;

}

/* 4: parts (title,list,table,icon,etc)
================================== */
/* ------margin classes------ */
.mb0 {
  margin-bottom: 0!important;
}
.mb8 {
  margin-bottom: 8px!important;
}
.mb16 {
  margin-bottom: 16px;
}
.mb24 {
  margin-bottom: 24px;
}
.mb32 {
  margin-bottom: 32px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb40 {
  margin-bottom: 40px;
}
.mt16 {
  margin-top: 16px;
}
.mt32 {
  margin-top: 32px;
}
.mr1em {
  margin-right: 1em;
}
.txtIndent p,
.txtIndent {
  text-indent: 1em;
}
/*上にコンテンツあればマージンとる*/
:is(.ttlDesign1, .ttlDesign2, .ttlDesign3, .ttlDesign4, .ttlDesign5, .flexImg):not(:first-child) {
  margin-top: 32px;
}
@media print, screen and (min-width: 768px) {
  :is(.ttlDesign1, .ttlDesign2, .ttlDesign3, .ttlDesign4, .flexImg):not(:first-child) {
    margin-top: 40px;
  }
}
h2 + h3,h3 + h4,h4 + h5,h5 + h6 {
  margin-top: 0!important;
}
:is(.ttlDesign1, .ttlDesign2, .ttlDesign3, .ttlDesign4):first-child {
  margin-top: 0px;
}

/* ------title classes------ */
.ttlDesign1 {
  position: relative;
  margin-bottom: 8px;
  padding-bottom: 16px;
  font-size: var(--font-size--x4l);
  font-weight: bold;
  text-align: center;
  color: #FFF;
  filter: var(--filter-drop-shadow);
}
@media print, screen and (min-width: 768px) {
  .ttlDesign1 {
    margin-bottom: 32px;
    font-size: var(--font-size--x7l);
  }
}
.ttlDesign1:after {
  content: '';
  position: absolute;
  top: 1.7em;
  display: inline-block;
  width: 240px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #FFF;
}
.ttlDesign1 span {
  display: block;
  padding-top: 5px;
  font-size: var(--font-size--x4l);
}
.ttlDesign2 {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 8px;
  font-size: var(--font-size--xl);
  font-weight: bold;
  color: var(--primary);
  line-height: 1.7;
  text-align: center;
}
@media print,
screen and (min-width: 768px) {
  .ttlDesign2 {
    font-size: var(--font-size--x3l);
  }
}
.ttlDesign2:after {
  content: '';
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 100px;
  height: 1px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: var(--primary);
}
.ttlDesign3 {
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 5px;
  font-size: var(--font-size--xl);
  font-weight: bold;
  color: var(--primary);
}
@media print, screen and (min-width: 768px) {
  .ttlDesign3 {
    margin-bottom: 24px;
    font-size: var(--font-size--x3l);
  }
}
.ttlDesign3:after {
  content: '';
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 60px;
  height: 1px;
  left: 0;
  background-color: var(--primary);
}
.ttlDesign4 {
  margin-bottom: 8px;
  font-size: var(--font-size--xl);
  font-weight: bold;
  color: var(--primary);
}
@media print, screen and (min-width: 768px) {
  .ttlDesign4 {
    font-size: var(--font-size--x3l);
  }
}
.ttlDesign5 {
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--text-gray);
}
@media print, screen and (min-width: 768px) {
  .ttlDesign5 {
      font-size: var(--font-size--xl);
    }
}
.ttlDesign6 {
  display: inline-block;
  min-width: 3em;
  margin-top: 16px;
  margin-bottom: 8px;
  padding: 3px 8px;
  background-color: var(--primary);
  color: #FFF;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
}
ul li + li .ttlDesign6 { margin-top: 24px; }

/* ------text classes------ */
.red {/*赤文字*/
  color: var(--text-red);
}
.fB {/*太文字*/
  font-weight: bold;
}
.fS {/*小さいフォント*/
  font-size: 90%;
}
.fSS {/*さらに小さいフォント*/
  font-size: 70%;
}
.fBig {/*大きいフォント*/
  font-size: 120%;
}
.fI {/*イタリック*/
  font-style: italic;
}
.tU {/*アンダーライン*/
  text-decoration: underline double;
}
.vM {
  vertical-align: middle;
}
.tC {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .tC_pc {
    text-align: center;
  }
}
.tR {
  text-align: right;
}
.tL {
  text-align: left;
}
.tel,.tel:hover {
  color: var(--text);
  text-decoration: none;
}

/* ------table classes------ */
.tableDesign1,
.tableDesign2 {
  width: 100%;
  word-break: break-all;
}
.tableDesign1 {
  border-top: 2px solid #98A6B5;
}
.tableDesign1 th,
.tableDesign1 td {
  display: block;
  width: 100%;
  padding: 16px;
  border-bottom: 1px solid var(--border-gray);
  text-align: left;
}
.tableDesign1 th p + p,
.tableDesign1 td p + p { margin-top: 1em; }


.tableDesign1 th {
  padding-bottom: 0;
  font-weight: bold;
  color: var(--primary);
  border: none;
}
@media print, screen and (min-width: 768px) {
  .tableDesign1 th,
  .tableDesign1 td {
    display: table-cell;
    width: auto;
  }
  .tableDesign1 th {
    padding: 16px;
    width: 12em;
    vertical-align: middle;
    border-bottom: 1px solid #c9c9c9;
  }
}
.tableDesign2 th,
.tableDesign2 td {
  display: block;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--primary);
  text-align: left;
}
.tableDesign2 th {
  background: #CDD6DD;
  font-weight: bold;
  vertical-align: middle;
  color: var(--primary);
  border-bottom: 0;
}
.tableDesign2 tr:not(:last-child) td {
  border-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .tableDesign2 th,
  .tableDesign2 td {
    display: table-cell;
    width: auto;
    border: 1px solid var(--primary);
  }
  .tableDesign2 th {
    width: 12em;
  }
}
.tableScroll {
  overflow: auto;
}
.tableScroll table {
  width: 660px;
}
@media print, screen and (min-width: 768px) {
  .tableScroll table {
    width: 100%;
  }
}

/* ------list classes------ */
.list_dot {
  padding-left: 20px;
}
.list_dot > li {
  list-style-type: disc;
  margin-bottom: 8px;
}
.list_dot_mb0 > li {
  margin-bottom: 0;
}
.list_dot2 > li {
  position: relative;
  width: 100%;
  margin-bottom: 8px;
  padding-left: 20px;
}
.list_dot2 > li:before {
  position: absolute;
  top: 10px;
  left: 7px;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 6px;
  border: 1px solid var(--border-gray);
  background: #FFF;
}
.list_arw > li {
  position: relative;
  background-size: 14px;
  margin-bottom: 8px;
  padding-left: 18px;
}
.list_arw > li::after {
  position: absolute;
  left: 4px;
  top: 40%;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.listDesign_no,
.listDesign_Lroman,
.listDesign_Lalpha {
  margin-bottom: 24px;
  padding-left: 24px;
}
.listDesign_no > li {/*算用数字*/
  list-style-type: decimal;
  margin-bottom: 8px;
}
.listDesign_Lroman li {/*小文字のローマ数字*/
  list-style-type: lower-roman;
  margin-bottom: 4px;
}
.listDesign_Lalpha li {/*小文字のアルファベット*/
  list-style-type: lower-alpha;
  margin-bottom: 4px;
}
.listDesign_Lalpha > li:last-child,
.listDesign_Lroman > li:last-child,
.listDesign_no > li:last-child {
  margin-bottom: 0;
}
.listDesign_no2 > li {
  /*括弧付の数字リスト*/
  position: relative;
  margin-bottom: 4px;
  padding-left: 2em;
  counter-increment: cnt;
}
.listDesign_no2 > li:before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "（"counter(cnt) "） ";
}

/* ------dl classes------ */
.dlDesign1 {
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.dlDesign1 dt {
  width: 8em;
  margin-right: 1em;
  margin-bottom: 16px;
  padding-right: 1em;
  border-right: 1px solid #DDE6E6;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .dlDesign1 dt {
    width: 10em;
  }
}
.dlDesign1 dd {
  width: calc(100% - 10em);
  margin-bottom: 16px;
}

/* ------boxDesign classes------ */
.boxDesign1 {
  padding: var(--side-margin-sp);
  background-color: var(--bg-white-rgba);
}
@media print, screen and (min-width: 768px) {
  .boxDesign1 {
    padding: var(--top-margin-pc) var(--side-margin-pc);
  }
}
/* ------ icon classes ------ */
.blank {
  background: url(../img/icn_blank.svg) right center no-repeat;
  background-size: 14px;
  padding-right: 18px;
}
.blankWht {
  background: url(../img/icn_blankWht.svg) right center no-repeat;
  background-size: 14px;
  padding-right: 18px;
}
.pdf {
  background: url(../img/icn_pdf.svg) right center no-repeat;
  background-size: contain;
  margin-right: 8px;
  padding-right: 24px;
}
.xls {
  background: url(../img/icn_xls.svg) right center no-repeat;
  background-size: contain;
  margin-right: 8px;
  padding-right: 24px;
}
.doc {
  background: url(../img/icn_doc.svg) right center no-repeat;
  background-size: contain;
  margin-right: 8px;
  padding-right: 24px;
}
.lintkIcn a {
  position: relative;
  padding-left: 16px;
}
.lintkIcn a::before {
  position: absolute;
  left: 0;
  top: 43%;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #F3F3F3;
}

.pc-flex { display: block; }
.pc-flex div + div { margin-top: 40px; }

@media print, screen and (min-width: 768px) {
  .pc-flex { display: flex; justify-content: space-around; }
  .pc-flex div { flex: 1; }
  .pc-flex div p:last-child { margin: 0 20px; }
  .pc-flex div + div { margin-top: 0; }
}
/* ---------- button -------------*/
.button { text-align: center;}
.button a {
    display: inline-block;
    width: 250px;
    margin:0 auto;
    padding: .9em 2em;
    border: none;
    border-radius: 8px;
    background-color: var(--color-accent1);
    color: var(--text);
    font-weight: 600;
    font-size: 1em;
    transition: .3s;
}

.button a:hover {
    background-color: var(--link-hover);
    color: #fff;
}

.alert { text-align: center; color: red; font-weight: bold; margin-bottom: 0.6em; }

/* ------ button classes ------ */
.moreBtn a {
  display: inline-block;
  padding: 8px 40px;
  text-decoration: none;
  background: #FFF;
  color: var(--primary);
  font-weight: bold;
  text-align: center;
  border: 1px solid var(--primary);
  border-radius: 4px;
}
@media print, screen and (min-width: 768px) {
  .moreBtn a {
    transition: all 0.2s ease;
  }
  .moreBtn a:hover {
    background: var(--primary);
    color: #FFF;
    border: 1px solid var(--primary);
  }
}

/* ------ accordion classes ------ */
/*アイコン*/
.open_icn {
  display: inline-block;
  vertical-align: middle;
  color: #FFF;
  line-height: 1;
  position: absolute;
  top: 30%;
  right: 16px;
  width: 20px;
  height: 20px;
  border: 0.1em solid currentColor;
  border-radius: 50%;
  box-sizing: content-box;
  transition: all 0.2s ease;
  color: var(--primary);
}
@media print, screen and (min-width: 768px) {
  .open_icn {
    width: 24px;
    height: 24px;
  }
}
.open_icn > span {
  width: 41%;
  height: 1px;
  background: currentColor;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.open_icn > span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
.open_icn > span::before,
.open .open_icn > span {
  transition: all .3s;
}
.open .open_icn > span::before {
  transform: rotate(0deg);
}
.ac_header {
  border-bottom: 1px solid var(--border-gray);
  padding: 8px;
  position: relative;
  z-index: +1;
  cursor: pointer;
  color: var(--primary);
}
@media print, screen and (min-width: 768px) {
  .ac_header {
    padding: 16px;
  }
}
.ac_inner {
  display: none;
  padding: 8px;
  background:var(--bg-gray);
  border-bottom: 1px solid var(--border-gray);
}
@media print, screen and (min-width: 768px) {
  .ac_inner {
    padding: 16px;
  }
}


/* 5: layout
================================== */
/* ------ header ------ */
.header {
  position: absolute;
  width: 100%;
  padding: 16px;
  z-index: 100;
}
@media print, screen and (min-width: 768px) {
  .header {
    position: fixed;
    padding: 16px 0;
  }
}
.header_inr {
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .header_inr {
    width: 100%;
    max-width: var(--mv-max-width);
    /* min-width: var(--content-min-width); */
    margin: 0 auto;
    padding: 0 var(--side-margin-pc);
  }
}
.ttl_logo {
  line-height: 1;
  z-index: 999;
}
.ttl_logo img {
  width: 100%;
  max-width: 180px;
  height: auto;
  filter: var(--filter-drop-shadow);
  transition: all .2s ease 0s;
}
@media print, screen and (min-width: 768px) {
  .ttl_logo img {
    max-width: 280px;
  }
}

/* ------ gnav ------ */
.menu_container {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 88px 0 0;
  background: rgba(var(--primary-rgb), 0.8);
  box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.2);
  z-index: 300;
  overflow-y: scroll;
}
@media print, screen and (min-width: 768px) {
  .menu_container {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    width: 100%;
    height: auto;
    padding: 0;
    background: none;
    transition: none;
    box-shadow: none;
    overflow-y: visible;
  }
}
@media print, screen and (min-width: 768px) {
  .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
.menu > li {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .menu > li {
    position: relative;
    text-align: center;
  }
  .menu > li:hover > a {
    color: var(--link);
  }
  .menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: inline-block;
    width: 24px;
    height: 1px;
    margin: 0 auto;
    background: var(--link);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
  }
  .menu > li.nav_contact > a::after {
    display: none;
  }
  .menu > li > a:hover::after,
  .menu > li.hover > a::after {
    transform: scale(1, 1);
  }
}
.menu a {
  display: block;
  max-width: 240px;
  margin: 0 auto;
  padding: 16px 0;
  color: #FFF;
  font-size: var(--font-size--xl);
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .menu a {
    width: 100%;
    padding: 16px;
    font-size: var(--font-size--lg);
  }
}


/*スマホ用メニューボタン*/
.menu_trigger {
  display: block;
  position: relative;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  text-indent: -900em;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  z-index: 999;
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
@media print, screen and (min-width: 768px) {
  .menu_trigger {
    display: none;
  }
}
.menu_trigger img {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  width: 30px;
  height: auto;
  margin: 10px auto 0;
}
.menu_trigger span {
  position: absolute;
  left: 0;
  right: 0;
  display: inline-block;
  width: 24px;
  height: 3px;
  margin: 0 auto;
  -webkit-transition: all .4s;
  transition: all .4s;
  background-color: #FFF;
}
.menu_trigger span:nth-of-type(1) {
  top: 6px;
}
.menu_trigger span:nth-of-type(2) {
  top: 15px;
}
.menu_trigger span:nth-of-type(3) {
  right: 4px;
  left: auto;
  bottom: 6px;
  width: 16px;
  margin: 0;
}
.menu_trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-45deg);
  transform: translateY(7px) rotate(-45deg);
}
.menu_trigger.active span:nth-of-type(2) {
  -webkit-transform: translateY(0px) rotate(45deg);
  transform: translateY(0px) rotate(45deg);
  top: 13px;
}
.menu_trigger.active span:nth-of-type(3) {
  opacity: 0;
}
.fixbody {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/*header固定*/
  .is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    transition: all .2s ease 0s, background .4s ease .2s;
    margin-top: 0;
    box-shadow: 0px 8px 8px -8px rgba(0, 0, 0, 0.16);
    background-color: rgba(var(--primary-rgb), 0.7);
  }
@media print, screen and (min-width: 768px) {
  .is-fixed {
    padding: 8px 0;
  }
  .is-fixed .ttl_logo img {
    width: 200px;
  }
  .is-fixed .menu a {
    font-size: 1.4rem;
  }
  .is-fixed.header {
    height: auto;
  }
  .is-fixed .name {
    font-size: 1.8rem;
  }
  .is-fixed .hdLink a {
    display: block;
    min-width: auto;
    padding: 4px 56px;
    text-decoration: none;
    font-size: var(--font-size--sm);
  }
}

/* ------ footer ------ */
/* go topボタン */
#pageTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}
#pageTop a {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  background : var(--bg-white-rgba);
  color: var(--primary);
  opacity: 0.7;
  border-radius: 50%;
}
@media print, screen and (min-width: 768px) {
  #pageTop a {
    width: 50px;
    height: 50px;
  }
}
#pageTop a:hover {
  opacity: 0.7;
}
#pageTop a:active {
  opacity: 1;
}
#pageTop a:after {
  position: absolute;
  right: 14px;
  top: 40%;
  display: block;
  content:"";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media print, screen and (min-width: 768px) {
  #pageTop a:after {
    right: 17px;
    width: 15px;
    height: 16px;
    border-top: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
  }
}
.copy {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #FFF;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .copy {
    margin-bottom: 0;
    font-size: 1.2rem;
  }
}

/* 6: contents
================================== */
.mainContent {
  padding: var(--top-margin-pc) var(--side-margin-sp);
}
.inr {
  margin-bottom: var(--bottom-margin-sp);
}
@media print, screen and (min-width: 768px) {
  .inr {
    width: 100%;
    max-width: var(--content-max-width);
    /* min-width: 1000px; */
    padding: 0 var(--side-margin-pc);
    margin: 0 auto var(--bottom-margin-pc);
  }
}
.comingsoon {
  font-size: var(--font-size--x3l);
  font-weight: bold;
  color: var(--text-gray);
  text-align: center;
}

/* --------------------------------------------------
  メインビジュアル
-------------------------------------------------- */
.mainVisual {
  height: 100svh;
  min-height: 600px;
  background: url(../img/mainvisual.jpg) no-repeat bottom center;
  background-size: cover;
  color: #FFF;
}
@media print, screen and (min-width: 768px) {
  .mainVisual {
    background-position: top center;
    background-attachment: fixed;
  }
}
.mv_inr {
  position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
  padding: 80px var(--side-margin-sp) 0;
}
@media print, screen and (min-width: 768px) {
  .mv_inr {
    max-width: var(--mv-max-width);
    margin: 0 auto;
    padding: 15svh 300px 0;
  }
}
.mvTtl {
  text-align: center;
  filter: var(--filter-drop-shadow);
}
@media print, screen and (min-width: 768px) {
  .mvTtl {
    margin-bottom: 40px;
  }
}
.mvTtl img {
  width: 100%;
  max-width: 915px;
  margin-bottom: 24px;
}
.mvTxt {
  filter: var(--filter-drop-shadow);
  font-weight: bold;
  text-align: center;
}
.mvTxt p:nth-child(1) {
  margin-bottom: 32px;
  font-size: var(--font-size--xl);
}
@media print, screen and (min-width: 768px) {
  .mvTxt p:nth-child(1) {
  font-size: var(--font-size--x4l);
  }
}
.mvTxt p:nth-child(2) {
  max-width: 260px;
  margin: 0 auto 40px;
  padding: 8px;
  text-align: center;
  font-size: var(--font-size--xl);
  border: 1px solid #FFF;
  background-color: rgba(var(--primary-rgb), 0.4);
}
@media print, screen and (min-width: 768px) {
  .mvTxt p:nth-child(2) {
    margin: 0 auto;
  font-size: var(--font-size--x2l);
  }
}
.popup {
  padding: 40px;
  font-size: var(--font-size--xl);
  font-weight: bold;
  color: var(--primary);
  background: url(../img/bg_popup.png) no-repeat bottom center;
  background-size: contain;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .popup {
    position: absolute;
    top: 20vh;
    right: 0;
    padding: 60px;
    font-size: var(--font-size--x2l);
  }
}
.popup p {
  font-weight: bold;
}
.popup p:nth-child(2) {
  font-size: var(--font-size--md);
}

/* --------------------------------------------------
  News
-------------------------------------------------- */
#news {
  z-index: 0;
  max-width: 1120px;
  margin: 0 auto;
  padding: var(--side-margin-sp);
}
@media print, screen and (min-width: 768px) {
  #news {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: var(--top-margin-pc) var(--side-margin-pc);
  }
}
.ttlDesignNews {
  position: relative;
  margin-bottom: 24px;
  font-size: var(--font-size--x5l);
  font-weight: bold;
  color: var(--primary);
}
@media print, screen and (min-width: 768px) {
  .ttlDesignNews {
    width: 240px;
  }
}
.ttlDesignNews span {
  display: block;
  margin-top: 8px;
  font-size: var(--font-size--xl);
}
.ttlDesignNews span:after {
  content: '';
  position: absolute;
  top: 3.2em;
  display: inline-block;
  width: 35px;
  height: 1px;
  left: 0;
  background-color: var(--primary);
}
.newsList {
  max-height: 300px;
  overflow-y: auto;
}
@media print, screen and (min-width: 768px) {
  .newsList {
    width: calc(100% - 240px);
    max-height: 160px;
    margin-bottom: 0;
  }
  .newsList li {
    display: flex;
  }
}
.newsList::-webkit-scrollbar {
  background: #ccc;
  width: 10px;
}
.newsList::-webkit-scrollbar-thumb {
  background: var(--primary);
}
.newsList .date {
  color: var(--text-gray);
  font-weight: bold;
  margin-bottom: 8px;
}
@media print, screen and (min-width: 768px) {
  .newsList .date {
    width: 6em;
    margin-right: 24px;
    margin-bottom: 0;
  }
}
.newsList li {
  padding-right: 16px;
}
.newsList li:not(:last-child) {
  margin-bottom: 24px;
}
@media print, screen and (min-width: 768px) {
  .newsList li:not(:last-child) {
    margin-bottom: 16px;
  }
}

/* --------------------------------------------------
  About
-------------------------------------------------- */
/* --------------------------------------------------
  Program
-------------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .time-schedule {
    margin-left: 10em;
    border-left: 3px solid var(--color-accent1);
    box-sizing: border-box;
  }
  .time-schedule li {
    position: relative;
  }
}
.time-schedule span.time {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: var(--font-size--xl);
  color: var(--primary);
}
@media print, screen and (min-width: 768px) {
  .time-schedule span.time {
    position: relative;
    width: 7em;
    margin-top: 15px;
    margin-left: -9em;
    padding: 0 0 5px;
    vertical-align: top;
  }
  .time-schedule span.time::after {
    background-color: var(--color-accent1);
    content: "";
    position: absolute;
    right: -50px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 30px;
  }
}
.time-schedule .sch_box {
  margin-bottom: 24px;
  padding: 8px;
  background: #FFF;
  box-sizing: border-box;
  border-radius: 10px;
}
.time-schedule .sch_box p + p { margin-top: 1em;}

@media print, screen and (min-width: 768px) {
  .time-schedule .sch_box {
    display: inline-block;
    width: calc(100% - 3em);
    margin-left: 5em;
    margin-bottom: 32px;
    padding: 16px;
    vertical-align: middle;
    background: #FFF;
    box-sizing: border-box;
    border-radius: 10px;
  }
}
.time-schedule .title {
  font-weight: bold;
}
/* --------------------------------------------------
  Entry
-------------------------------------------------- */
.anchor {
    padding-top: 120px; /* ヘッダーの高さを入力 */
    margin-top: -100px!important; /* ヘッダーの高さを入力 */
}
/* --------------------------------------------------
  Access
-------------------------------------------------- */
.accessBox > div {
  padding: 8px;
  background-color: #FFF;
}
@media print, screen and (min-width: 768px) {
  .accessBox {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .accessBox > div {
    width: calc((100% - 80px) / 2);
    padding: 16px;
  }
}
/* --------------------------------------------------
  Contact
-------------------------------------------------- */
