@charset "utf-8";

/*base*/
html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.2);
  scroll-padding-top: 70px;
}

body {
  font-size: 1.6rem;  /*16px*/
  line-height: 1.6;
  height: 100%;
  min-height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #333;
  overflow-x: hidden;
}

a {
  color: #2779B0;
  transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;

  &:hover {
    opacity: 0.7;
    text-decoration: none;
  }

  img {
    transition: opacity .5s;
    -moz-transition: opacity .5s;
    -webkit-transition: opacity .5s;
  }
}

::selection {
  background: rgba(221, 235, 243, 1);
}

::-moz-selection {
  background: rgba(221, 235, 243, 1);
}

/*head*/
#head {
  width: 100%;
  height: auto;
  position: relative;

  .catch {
    margin-bottom: 3px;
    padding: 5px 0 3px;
    background: rgba(244, 236, 225, 0.5);
    line-height: 1;
    letter-spacing: 0.03em;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5d3a2f;
  }

  .header__box {
		position: relative;
		display: flex;
		justify-content: space-between;
		max-width: 1200px;
		margin: auto;
		padding: 5px 54px 5px 5px;
		margin-bottom: 4px;
    max-width: 1200px;
    -webkit-transition: all .6s cubic-bezier(.19,1,.22,1);
    transition: all .6s cubic-bezier(.19,1,.22,1);

    &.is-stuck{
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 990;
      background: #fff;
    }

    @media (width >= 1300px) {
      padding: 5px 53px 5px 6.2vw;
      max-width: unset;
    }


    /* ロゴ */
    .header__brand{ 
      margin-top: 0.5em;

      img {
        max-height: 50px !important;
        max-width: 120px !important;
      }
    }
    
    /* ヘッダーCTA */
    .header__cta-list {
      display: flex;
      justify-content: flex-end;
			flex-basis: 62%;
      gap: 2%;
      width: 360px;

      @media (width >= 820px) {
        flex-basis: 32%;
      }

      .header__cta-item {
				flex-basis: 33%;

        .header__cta-link {
          display: flex;
					justify-content: center;
					align-items: center;
					flex-flow: column;
					gap: 3px;
					height: 55px;
					padding: 2px 5px;
					border-radius: 5px;
					letter-spacing: 0.5px;
					line-height: 1.3;
					text-decoration: none;
					text-align: center;
					color: #fff;
					font-size: 1.2rem;

          @media (width >= 820px) {
					  font-size: 1.6rem;
          }

          img {
            width: 18px;
            height: auto;
          }

          &.header__cta-link--search{
            background: #FFA217;
          }

          &.header__cta-link--space_ask{
            background: #3ba3b3;
          }

          &.header__cta-link--order{
				    background: #CB5274;
          }
        }
      }
    }
  }

  .head_bt {
    display: flex;
    justify-content: flex-end;
    margin-right: 0px;

    li {
      margin-left: 10px;
      text-align: center;

      .bt_mess {
        font-size: 50%;
        font-weight: 550;
        display: block;

        &:before {
          content: "\005C";
          font-family: arial;
        }

        &:after {
          content: '/';
        }
      }

      .line_big_cta {
        font-size: 0.9em;
        font-weight: 600;
        display: block;
        background: #26ab67;
        color: #fff;
        padding: 0.5em 0.2em;
        border-radius: 0.4em;
        text-decoration: none;
      }

      img {
        max-height: 44px;
        max-width: 60px;
        border-radius: 2px;
      }
    }
  }
}

/*foot*/
footer#foot {
  background: #eee4d2;
  padding-top: 10px;
	padding-bottom: 70px;


  .footer-box { 
    padding: 20px 0 10px;

    @media (width >= 820px) {
      .footer-box--flex{
				display: flex;
				align-items: center;
				gap: 35px;
				max-width: 820px;
				margin: auto;

        & > * {
          flex-basis: 48%;
        }
      }
    }


    ul.sns-list {
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;

      @media (width >= 820px) {
        width: 430px;
        margin: auto;
      }

      & > * {
        flex-basis: 15%;
        text-align: center;
        margin-bottom: 10px;

        img {
          width: 30px;  
        }
      }
    }

    .business-hours {
      text-align: center;
    }

    .footer-nav {
			width: 90%;
      margin: auto;
      margin-top: 25px;

      .footer-nav__tit {
				margin-bottom: 10px;
				font-weight: 500;
				font-size: 2rem;
      }

      ul.footer-nav__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: start;
        gap: 1%;
        align-items: center;
				font-size: 1.6rem;

        & > * {
          flex-basis: 49%;
          margin-bottom: 10px;

          a {
            color: #333;
            text-decoration: none;
          }
        }
      }
    }
  }

  #copy{  
		font-size: 1.8rem;
		color: #333;
		text-align: center;
		padding: 8px;
  }

  @media (width >= 820px) {
    .footer_area {
      max-width: 1200px;
      margin-top: -10px;
      margin-right: auto;
      margin-left: auto;
      padding: 0;

      ul.sns_list {
        padding-top: 60px;
        justify-content: center;
        gap: 15px;

        & > * {
          flex-basis: 5%;
          font-size: 1.05em;
        }
      }

      ul.li3 {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 3%;
        padding: 15px;

        & > * {
          flex-basis: 48%;
          margin-bottom: 0.5em;
          gap: 2%;
        }
      }
    }

    & .footer_cta_flex {
      margin-top: 50px; 
      justify-content: center;
      gap: 2%;

      & > p.footer_cta {
          flex-basis: 30%;
      }
    }

    .tit3 {
      max-width: 1200px;
      margin-right: auto;
      margin-left: auto;
      margin-bottom: 40px;
    }

    ul.footer_list {
      margin-top: 40px;

      li {
        flex-basis: 19%;
        text-align: center;
      }
    }
  }
}

/*drawer*/
.drawer {
  display: block;
  z-index: 9999;

  .drawer-hamburger {
    width: 30px !important;
    padding: 9px 12px 27px !important;
    border-radius: 3px 0 0 3px;
    z-index: 9999 !important;
    margin-top:35px;
    top:0;
    -webkit-transition: none;
    transition: none;

    &.drawer-hamburger--scroll {
      margin-top:10px;
    }

    &:hover {
      z-index: 999;
    }

    &:after {
      content: "MENU";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 7px;
      font-size: 10.5px;
      z-index: 999;
      color: #222;
    }
  }

  .drawer-hamburger-icon {
    margin: 7px 0;
  }

  .drawer-nav {
    background-color: transparent !important;
    width: 100% !important;
    z-index: 999;
  }

  &.drawer--right {
    .drawer-nav {
      right: -100vw;
			top: 0;
      background: #F6F4EC !important;
    }

    &.drawer-open .drawer-hamburger {
      right: 0px !important;
      top: 0.3em !important;
			position: fixed !important;
    }
  }

  .drawer-menu {
    padding-bottom: 120px !important;
		margin: auto;
    max-width: 480px;

    .drawer_dl1 dt,
    .drawer_dl2 dt {
      margin-top: 1em;
      padding: 1em;
      text-align: center;
      font-size: 1.1em;
    }

    .drawer_dl1 dd {
      padding: 0.5em 0;
      color: #333;
      border-top: 1px solid #33333361;
      margin: 0 1em;

      &:last-of-type {
        border-bottom: 1px solid #33333361;
      }
    }

    .drawer_dl2 dd.drawer_anchor {
      margin: 1em;

      &:first-of-type {
        margin-top: 0;
      }
    }

    .drawer_content_wrap {
      background: #f7f7f7;
      padding: 16px;
      border-radius: 5px;
    }

    .drawer_content ul {
			display: flex;
			flex-wrap: wrap;
			line-height: 2.7;
			gap: 3%;

      a {
        background: #fff;
        display: block;
        padding: 0px 10px;
        border-radius: 30px;
        color: #333;
        text-decoration: none;
        font-weight: 600;
				margin-top: 10px;
				margin-bottom: 10px;
				min-width: 100px;
				text-align: center;
      }
    }

    .drawer-dropdown-menu {
      background: none;
    }

    li a:hover,
    li .drawer-menu-item:hover,
    .open .drawer-menu-item:hover {
      background: rgba(25, 4, 0, 0.85);
      text-decoration: none;
      color: rgba(255, 255, 255, 0.95);
      opacity: 1;
      cursor: pointer;
    }

    .open .drawer-menu-item {
      background: rgba(35, 4, 0, 0.85);
    }
  }

  .drawer_anchor {
    margin-top: 4.5em;
    margin-bottom: 1em;
    text-align: center;

    a {
      background: #fff;
      display: block;
      width: 60vw;
      max-width: 360px;
      padding: 1.5em 1em;
      margin: auto;
      color: #333;
      text-decoration: none;
    }
  }

  .drawer--right.drawer-open .drawer-nav {
    right: 0 !important;
  }

  div.head_announce p {
    font-size: 0.8em;
  }

  .drawer-overlay {
    background-color: unset;
  }

  .drawer-wrap {
    margin: 20px auto;
    width: 97%;
  }

  .cta-area {
    background: #fff;
    box-shadow: 0px 2px 2px 2px rgb(0 0 0 / 3%);
    padding: 10px;
    margin: 90px 10px 40px;
    border-radius: 5px;

    .cta-area-tit {
      text-align: center;
			font-size: 2.2rem;
      font-weight: 500;
    }

    .business-hours {
      margin-top: -5px;
      font-size: 1.4rem;
    }
  }

  /* drawer-accordion */
  .drawer-accordion__input{
    display: none;
  }

  .drawer-accordion__label {
    position: relative;
    border-bottom: 1px solid;
    display: block;
    margin: 10px;
    font-weight: 500;
    text-decoration: none;
		color: #333;

    &::after{
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 18px;
      margin: auto;
      vertical-align: middle;
      width: 5px;
      height: 5px;
      border-top: 1px solid rgba(45,4,0,0.45);
      border-right: 1px solid rgba(45,4,0,0.45);
      -moz-transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      transition: .5s;

      &:hover { 
        width: 8px;
        height: 8px;
        border-width: 2px;
        -moz-transition: width .3s ease-out;
        -webkit-transition: width .3s ease-out;
        transition: width .3s ease-out;
        -moz-transition: height .3s ease-out;
        -webkit-transition: height .3s ease-out;
        transition: height .3s ease-out;
      }
    }
  }

  .drawer-accordion__item{
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
    line-height: 2.2;
    background: #fff;

    a {
      color: #333;
      text-decoration: none;
      font-weight: 500;
    }
  }

  .drawer-accordion__input:checked + .drawer-accordion__label {
    opacity: 0.75;

    &::after {
      transform: rotate(135deg);
      transition: .5s;
    }
  }

  .drawer-accordion__input:checked+.drawer-accordion__label+.drawer-accordion__item{
    height: auto;
    opacity: 1;
    padding: 10px;
    visibility: visible;
  }

  .bottom_change.drawer-hamburger-icon {
    background-color: transparent;

    &:before {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      top: 0;
    }

    &:after {
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
      top: 0;
    }
  }

  .open {
    right: 0 !important;
    font-size: 1.05em;
    overflow: scroll;
    position: fixed;
    top: 0;
    height: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .drawer_position{
    position: fixed!important;
  }

  @media (width > 896px) {
    .drawer_position {
      margin-right: 15px;
    }
  }
}

.no_scrool {
  overflow: hidden !important;
}

/* cta */
.cta {
	text-align: center;

  a.cta__link {
    display: inline-block;
    position: relative;
    min-width: 280px;
    border-radius: 5px;
    background: #4E75BA;
    padding: 5px 16px 5px 5px;
    line-height: 2.5;
    text-decoration: none;
    text-align: center;
    color: #fff;

    &::before{
      content: "";
      position: absolute;
      top: 50%;
			right: 15px;
      transform: translateY(-50%);
      border: 5px solid transparent;
      border-left: 8px solid #fff; 
    }
  }
}

.footer__cta-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 15px 10px 0 10px;
  text-align: center;

  @media (width >= 820px) {
    max-width: 400px;
    margin: 20px auto 0;
  }

  .footer__cta-item {
    flex-basis: 46.5%;

    &:last-of-type {
      flex-basis: 100%;
    }

    .footer__cta-link {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2%;
      min-height: 50px;
      margin-bottom: 10px;
      padding: 3px;
      border-radius: 5px;
      text-decoration: none;
      text-align: center;
      font-size: 1.8rem;
      font-weight: 500;
      color: #fff;

      &.footer__cta-link--space_ask {
        background-color: #3ba3b3;
      }

      &.footer__cta-link--order {
        background-color: #CB5274;
      }

      &.footer__cta-link--tel {
        background-color: #F3A515;
        font-size: 2.3rem;

        img {
          width: 23px;
          height: auto;
        }
      }

      img {
        width: 20px;
        height: auto;
      }
    }
  }
}

/* section-box */
section.section-box{
  display: block;
	padding: 50px 0;

  section.section-box{
    @media (width >= 1200px) {
      max-width: 1200px;
      margin: auto;
    }

    &:first-child{
      padding: 0;
    }
  }
}
  


.bg {
  background-color: #F6F4EC;
}

/*tit*/
.tit__h1{
	font-optical-sizing: auto;
	font-style: normal;
}

.tit__h2{
	font-optical-sizing: auto;
	font-style: normal;
	margin: 10px 5px;
	line-height: 1.6;
	letter-spacing: 0.05em;
  font-size: 2.7rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 1em;

  &.tit__h2--left {
    text-align: left;
    font-size: 2.1rem;
	  margin-bottom: 0em;
  }
}

.tit__h3{
  font-optical-sizing: auto;
	font-style: normal;
	margin: 10px 5px 20px;
	line-height: 1.2;
	letter-spacing: 0.05em;
  font-size: 2.1rem;
	font-weight: 500;
	text-align: center;

  span {
    font-size: 1.8rem;
    color: #8F8F8F;
  }

  &.tit__h2--left {
    text-align: left;
    font-size: 2.1rem;
  }
}

.tit__h4{
	font-optical-sizing: auto;
	font-style: normal;
}

.tit1 {
	font-size: 1.4em;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.05em;
	margin: 25px 0px 25px 20px;
}

@media (width >= 820px) {
  .tit1 {
    max-width: 1200px;
    margin: 10px auto;
  }
}

.tit2 {
  font-size: 1.3em;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.05em;
	margin: 10px 5px;
}

.tit3 {
  max-width: 1200px;
	margin: 25px 0 15px;
  padding: 0 0 2px;
	font-size: 1.15em;
  line-height: 1.6em;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #5d3a2f;
  border-bottom: 2px solid #411c19;
}

.tit4 {
	font-size: 1.05em;
	line-height: 1.4;
	letter-spacing: 0.03em;
	border-left: 4px solid #333333;
	padding-left: 6px;
	font-weight: 400;
	color: #333333;
	margin-top: 20px;
	margin-bottom: 5px;
}



































































/*img*/
.img_cap {
  display: block;
  line-height: 1.35;
	text-align: left;
  padding: 8px;
  margin: 0 auto;
  background: #f9f5f0;
  box-sizing: border-box;
}

/*time*/
div#c0 {
  p.time {
    margin: 15px 5px 10px;
    text-align: right;

    &:before {
      content: "更新日：";
      font-size: 1.05rem;
    }
  }
}

@media (width >= 820px) {
  div#c0 p.time {
    margin: 15px auto 10px;
    max-width: 1200px;
  }
}

/*wrap*/
@media (width >= 820px) {
  .head_wrap,
  .top_content_bottom{
    max-width:1200px;
    margin-left :auto;
    margin-right :auto;
  }
}





/*footer_fix*/
.footer_fix {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  transition: .3s;
  background: rgba(225, 225, 225, 0.6);

  img {
    vertical-align: bottom;
  }

  .footer_fix_bt {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;

    li {
      text-align: center;

      & > div,
      a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 27px;
        margin: 5px;
        padding: 10px;
        padding-left: 30px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.3rem;
        letter-spacing: 0.07em;
        background-size: 20px 20px !important;
        background-position: 26% 50% !important;
        transition: all 0.3s;
        border-radius: 0.2rem;
        text-decoration: none;

        & span {
          font-size: 1.6rem !important;
        }

        &:active {  
          margin-top: 10px;
          margin-bottom: -10px;
          transition: all 0.3s;
          box-shadow: none;
        }
      }
    }

    .bt_tel {
      flex-basis: 28%;

      a {
        background: url(/img/common/bt_tel.png) no-repeat rgb(255 143 74 / 95%);
      }

      &.tri_1 {
        flex-basis: 32%;
      }
    }

    .bt_space_ask {
      flex-basis: 44%;

      div,
      a {
        background: url(/img/common/bt_space_ask.png) no-repeat rgba(0, 30, 170, 0.95);
      }

      &.tri_1 {
        flex-basis: 31%;
      }
    }

    .bt_order {
      flex-basis: 28%;

      &.tri_1 {
        flex-basis: 44%;
      }

      & div,
      & a {
        background: url(/img/common/bt_order.png) no-repeat rgba(170, 15, 0, 0.9);
      }
    }

    .only {
      flex-basis: 100%;
    }

    .two_w {
      flex-basis: 50%;
    }

    .two_n {
      flex-basis: 50%;
    }

    &.tri li div,
    &.tri li a {
      background-position: 12px 50% !important;
    }
  }

  .bg_blue {
    & > div,
    & > a {
      background: rgba(0, 30, 170, 0.95);
      box-shadow: 0 5px 0 rgb(85 106 165 / 90%);
    }
  }


  .bg_green {
    & > div,
    & > a {
      background: rgba(25, 130, 14, 1);
      box-shadow: 0 5px 0 rgb(65 158 59 / 90%);
      padding: 8px 0 8px;
    }
  } 


  .footer_txt {
    background: rgba(255, 80, 15, 0.7);
    color: #fff;
    padding: 3px;
    text-align: center;
  }
}

/*bc*/
.bc {
	font-size: 11px;
	line-height: 11px;
	position: relative;
	border-top: 1px solid #eee4d2;
	padding-top: 10px;
	background: #fef5e6;

  ol {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
		padding-left: 10px;

    li {
      float: left;
      margin-right: 10px;
      margin-bottom: 10px;
  
      &::after {
        content: "＞";
        margin-left: 10px;
      }
  
      &:last-child::after {
        content: none;
        margin-left: 0;
      }
    }
  
    a {
      color: #333;
      text-decoration: none;
  
      &:hover {
        color: #da8;
      }
    }
  }
}

@media (width >= 820px) {
  .bc {
    ol {
      padding-left:0;
    }
  }
}



/* mv */
.main_img {
  max-width: 1200px;
  margin: auto;
}

/*txt*/

p.top_txt {
	margin: 5px;
	line-height: 2;
}

@media (width >= 820px) {
  p.top_txt {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }
}

.txt {
	font-size: 1.05em;
	line-height: 2;
	color: #333;
	margin-bottom: 25px;

  &.note {
    font-size: 0.95em;
		line-height: 1.5;
    padding-left: 1.3rem;
    text-indent: -1.5rem;
    color: #5c5b5b;
    margin-bottom: 0;

    &:last-of-type {
      margin-bottom: 10px;
    }
      
    &::before {
      content: "※";
      padding-right: 5px;
      font-size: 80%;
      position: relative;
      top: -1px;
    }

    &.n1,
    &.n2,
    &.n3,
    &.n4,
    &.n5 {
      padding-left: 2rem;
      text-indent: -2rem;
    }

    &.n1:before {
      content: "※1";
    }

    &.n2:before {
      content: "※2";
    }

    &.n3:before {
      content: "※3";
    }

    &.n4:before {
      content: "※4";
    }

    &.n5:before {
      content: "※5";
    }
  }
}


/*flex*/
@media (width >= 820px) {
  .flex_dbl,
  .flex_tri {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

    &.all{
      justify-content: space-between;
    }
  }

  .flex_dbl {
    & > * {
      flex-basis: 46.5%;
    }

    &.all > * {
      flex-basis: 42%;
    }
  } 

  .flex_tri > * {
    flex-basis: 29.5%;

    &.all > * {
      flex-basis: 25%;
    }
  }
}

/*list*/
.li1 li,
.li2 li {
  margin-bottom: 10px;
}

.li1 li:last-child,
.li2 li:last-child {
  margin-bottom: 0;
}

.li1>li {
  text-indent: -1em;
  padding: 0 1em;
}

.li1>li:before {
  content: "・";
}

.li1>li>.li1 {
  margin-top: 5px;
}

.li1>li>.li1>li {
  font-size: 1.2rem;
  font-weight: normal;
  color: rgba(45, 4, 0, 0.85);
  background: #f9f5f0;
  width: fit-content;
  border-radius: 4px;
  text-indent: 0;
  padding: 2px 5px;
  margin-bottom: 5px;
  overflow-wrap: initial;
}

.li1>li>.li1>li:before {
  content: none;
}

.li2 {
  counter-reset: number;
}

.li2>li {
  text-indent: -1.8em;
  padding-left: 1.8em;
}

.li2>li:before {
  content: counter(number)".";
  counter-increment: number;
  padding-right: 10px;
}

.li_s {
  font-size: 1.3rem !important;
}

.li3 li a {
  display: block;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(45, 4, 0, 0.95);
  background: rgba(244, 236, 225, 0.3);
  border: solid 1px rgba(45, 4, 0, 0.3);
  padding: 8px 30px 8px 15px;
  margin-bottom: 3px;
  border-radius: 4px;
  position: relative;
  font-size: 0.9em;
}

.li3 li a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-top: 1px solid rgba(45, 4, 0, 0.45);
  border-right: 1px solid rgba(45, 4, 0, 0.45);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.li3 li a:hover:after {
  width: 8px;
  height: 8px;
  border-width: 2px;
  -moz-transition: width .3s ease-out;
  -webkit-transition: width .3s ease-out;
  transition: width .3s ease-out;
  -moz-transition: height .3s ease-out;
  -webkit-transition: height .3s ease-out;
  transition: height .3s ease-out;
}

/*dl*/
.dl1,
.dl2 {
  background: rgba(250, 247, 245, 0.95);
  padding: 10px;
  margin-bottom: 15px;
}

.dl2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.dl1 dt,
.dl2 dt,
.dl1 dd,
.dl2 dd {
  line-height: 1.4;
  padding: 5px 0;
}

.dl1 dt,
.dl2 dt {
  font-size: 1.8rem;
  font-weight: 600;
}

.swp .dl2 dt {
  flex-basis: 100%;
  padding-right: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.dl1.dd_li dd,
.dl1.dd_star dd {
  text-indent: -1.3em;
  padding-left: 1.3em;
}

.dl1.dd_li dd:before {
  content: "・";
}

.dl1.dd_star dd:before {
  content: "★";
  font-size: 80%;
  color: rgba(196, 26, 26, 0.75);
  padding-right: 5px;
  position: relative;
  top: -1px;
}

.dl2 dt,
.dl2 dd {
  border-bottom: solid 1px rgba(26, 128, 196, 0.25);
  margin-bottom: 15px;
}

.dl2>*:nth-last-child(1),
.dl2>*:nth-last-child(2) {
  border-bottom: none;
  margin-bottom: 0;
}

.dl2 dt {
  flex-basis: 24%;
  padding-right: 2%;
}

.dl2 dd {
  flex-basis: 74%;
}

.swp .dl2 dd {
  flex-basis: 100%;
}

.dl1 .dl_s {
  font-size: 1.3rem;
}

.dl1 .li1 li {
  line-height: 1.5;
  margin-bottom: 0;
}

.dl3 {
  background: rgba(240, 250, 250, 0.95);
  padding: 10px;
  width: 80%;
  margin: 0 auto 15px;
}

.dl3 dt {
  font-weight: 600;
}

/*rel*/
.rel {
	margin-top: 10px;
	margin-bottom: 20px;
	line-height: 1.7;
	font-size: 0.95em;

  & > * {
    font-weight: 600;
    text-indent: -1em;
		padding-left: 1em;

    &::before {
      color: #333;
      content: "・";
    }

    a {
      text-decoration: none;
    }
  }

  &:before {
    content: "関連ページ";
    display: block;
    font-weight: 600;
    margin: 15px 0 2px;
  }

  &.site:before {
    content: "関連サイト（外部）";
  }

  &.ref:before {
    content: "参考元（外部）";
  }
}

/*bt_cta*/
.sws .bt_cta div,
.sws .bt_cta a {
  width: 96%;
}

p.bt_cta a,
.bt_cta div,
p.bt_school a {
  display: block;
  border-radius: 8px;
  text-align: center;
  margin: 0 auto;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 3px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, .15);
  color: #fff !important;
}

p.bt_cta a,
.bt_cta div,
p.bt_school a {
  font-size: 2rem;
  background: #4b83ff;
  padding: 10px 0;
  margin-top: 10px;
}

p.bt_tel a {
  background-color: rgba(238, 119, 17, 0.85) !important;
}

p.bt_school a {
  background: #999;
}

/*tb1*/
.tb1 {
  color: #333;
  border: 1px solid #eee;
  width: 100%;
  margin: 0 auto;
}

.sws .tb1 {
  width: 96%;
}

.tb1 tr:nth-child(2n),
.tb1 .pref,
.tb1 .school {
  background: #FCFCFC;
}

.tb1 th,
.tb1 td {
  border: 1px dashed #eee;
  text-align: center;
  vertical-align: middle;
  line-height: 1.6;
  padding: 4px 6px;
}

.tb1 th {
  background: rgba(244, 236, 225, 0.8);
  border: 1px solid #fff;
  font-size: 1.2rem;
}

.sws .tb1 td {
  font-size: 1.4rem;
}

.tb1 td.school {
  text-align: left;
}

.tb1 a {
  display: block;
  text-decoration: none;
  padding: 6px 0;
}

.tb1 a .txt_s {
  font-size: 1.15rem;
  color: #333;
}

.tb1 li {
  font-size: inherit;
  line-height: inherit;
  margin-bottom: inherit;
}

.tb1 .li1 li {
  text-indent: -1em;
  padding-left: 1em;
}

.tdl td {
  text-align: left !important;
}

/*banner*/
.bn1 {
  width: 100%;
  margin: 0 auto;
}

.sws .bn1 {
  width: 96%;
}

.bn1 img {
  width: 100%;
}

/*index_box*/
.index_box {
  background: rgba(250, 247, 245, 0.95);
  border: solid 6px rgba(0, 0, 0, 0.015);
  padding: 12px;
  margin: 0 auto;
  box-sizing: border-box;
}

.sws .index_box {
  margin-top: 15px;
  margin-bottom: 10px;
  width: 96%;
}

.swp .index_box {
  margin-top: 20px;
  margin-bottom: 30px;
}

.index_box ol {
  counter-reset: section;
}

.sws .index_box ol {
  padding: 0;
}

.index_box li:before {
  content: counters(section, "-")".";
  counter-increment: section;
  color: rgba(45, 4, 0, 0.6);
  padding-right: 0.5em;
  font-size: 80%;
}

.index_box:before {
  content: "目次";
  display: block;
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.1em;
}

.sws .index_box .parent_list li {
  font-size: 1.6rem;
  line-height: 1.3;
  margin-top: 2px;
  padding: 0 0 15px 1em;
  text-indent: -1em;
}

.swp .index_box .parent_list li {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 8px;
  padding-left: 2em;
  text-indent: -1.5em;
}

.swp .index_box .parent_list li:first-child {
  margin-top: 5px;
}

.sws .index_box .parent_list li:first-child {
  margin-top: 15px;
}

.sws .index_box .child_list {
  margin-top: 8px;
}

.index_box .child_list li {
  margin-top: 0;
  padding-left: 2.6em;
  text-indent: -2.6em;
}

.sws .index_box .child_list li {
  font-size: 90%;
}

.swp .index_box .child_list li {
  font-size: 80%;
}

.index_box li a {
  text-decoration: none;
  color: rgba(45, 4, 0, 0.85);
  font-weight: 600;
}

.sws .index_box li a {
  font-weight: 500;
}

.index_box li a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/*rel_link*/
.rel_link {
  background: rgba(250, 247, 245, 0.95);
  border: solid 6px rgba(0, 0, 0, 0.015);
  margin: 15px auto;
  box-sizing: border-box;
}

.sws .rel_link {
  padding: 12px;
  width: 96%;
}

.swp .rel_link {
  padding: 10px;
}

.rel_link_tit {
  font-weight: bold;
  color: rgba(45, 4, 0, 0.4);
  text-align: center;
  text-decoration: underline;
  transform: rotate(-2.5deg);
  -webkit-transform: rotate(-2.5deg);
}

.sws .rel_link_tit {
  font-size: 115%;
  margin-bottom: 20px;
}

.swp .rel_link_tit {
  font-size: 130%;
  margin-bottom: 15px;
}

.rel_link_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin: 10px 0 0;
}

.sws .rel_link_list {
  align-items: flex-start;
  flex-direction: column;
}

.sws #other_area_link .rel_link_list {
  flex-direction: inherit;
}

.rel_link_list li {
  flex-basis: auto;
  letter-spacing: 0.03em;
  margin-right: 20px;
}

.sws .rel_link_list li {
  font-size: 1.65rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.swp .rel_link_list li {
  font-size: 1.5rem;
  line-height: 2;
}

.rel_link_list li:before {
  content: "＞";
  color: rgba(45, 4, 0, 0.6);
  margin-left: 5px;
}

.rel_link_list li a {
  text-decoration: none;
  color: rgba(45, 4, 0, 0.85);
}

.sws .rel_link_list li a {
  font-weight: normal;
}

.swp .rel_link_list li a {
  font-weight: bold;
}

.rel_link_list li a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.child_link .rel_link_list {
  border-bottom: solid 1px rgba(0, 0, 0, 0.05);
  padding-bottom: 5px;
}

.child_link .rel_link_list:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.child_link .rel_link_list li {
  flex-basis: auto;
}

.sws .child_link .rel_link_list li {
  font-size: 90%;
  line-height: 1.8;
}

.swp .child_link .rel_link_list li {
  font-size: 95%;
  margin-right: 5px;
  position: relative;
  top: 1px;
}

.child_link .rel_link_list li:first-child {
  font-size: 115%;
}

.sws .child_link .rel_link_list li:first-child {
  flex-basis: 100%;
  margin-bottom: 15px;
}

.swp .child_link .rel_link_list li:first-child {
  flex-basis: 12%;
  top: 0;
}

/*bn_scroll*/
.bn_scroll ul {
  text-align: center;
  width: unset;
  overflow: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  border: dotted 1px #ddd;
  box-shadow: none;
  padding: 10px;
  margin: 10px auto;
  width: 96%;
  box-sizing: border-box;
}

.bn_scroll ul li {
  display: inline-block;
  width: 39vw;
  margin: 0 1.5vw 0 0;
  border: none;
  height: auto;
  line-height: inherit;
}

.bn_scroll ul li a {
  display: block;
  padding: 0;
}

.bn_scroll ul li img {
  width: 100%;
  height: auto;
}

.bn_scroll ul:after {
  content: "スクロール >>";
  color: rgba(45, 4, 0, 0.4);
  background: rgba(244, 236, 225, 0.9);
  font-weight: 600;
  font-size: 90%;
  display: block;
  margin: 5px 0 0;
  padding: 3px 5px;
  border-radius: 4px;
  width: 7em;
  text-align: center;
}

.no_scroll ul {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.no_scroll ul li {
  margin: 0 3vw 0;
}

.no_scroll ul:after {
  content: "";
}

/* follow_txt */
.follow {
  background: rgb(255 251 243 / 87%);
  border: solid 1px rgb(215 169 99 / 70%);
  padding: 15px 0.5em;
  margin: 0.5em;
}

.follow_tit {
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
  color: rgb(97 64 64 / 90%);
}

.follow_txt {
  margin: 10px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-size: 1.1em;
}

@media screen and (min-width: 896px) {
  .follow {
    max-width: 630px;
    margin: 1em auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}



/*scroll*/
.sws .scroll {
  width: unset;
  overflow: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  padding: 10px;
  box-shadow: none;
  border: dotted 1px #ddd;
}

.sws .scroll:after {
  content: "スクロール >>";
  color: rgba(45, 4, 0, 0.4);
  background: rgba(244, 236, 225, 0.8);
  font-weight: 600;
  font-size: 1.2rem;
  display: block;
  margin: 10px 0 0;
  padding: 0px 5px;
  border-radius: 4px;
  width: 7em;
  text-align: center;
}

/* item_scroll */
.item_scroll {
  overflow: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

.item_scroll table.cm_tb {
  letter-spacing: 0.01em;
  width: 100%;
}

.item_scroll table.cm_tb th {
  line-height: 1.7;
  background: #fcfdfd;
  border: #b7b9b9 solid 1px;
  color: #767676;
  font-weight: 600;
}

.item_scroll table.cm_tb td {
  border-left: #dddddd solid 1px;
  color: #333;
}

.item_scroll table.cm_tb th,
.item_scroll table.cm_tb td {
  padding: 0.2em;
}

.item_scroll table.cm_tb a {
  color: #333;
  text-decoration: underline;
}

.item_scroll .cm_tb tr:nth-child(even) td {
  background: #f9f8fa;
}

.item_scroll .cm_tb tr:nth-child(odd) td {
  background: #f1f1f1;
}

.item_scroll .cm_tb img {
  max-width: 60px;
}

.item_scroll table.cm_tb tr .sch {
  width: 150px;
  min-width: 150px;
  white-space: pre-line;
}

.item_scroll table.cm_tb tr td.sch {
  text-align: left;
}

#main .item_scroll .cm_tb a,
#main .item_scroll .cm_tb a:visited {
  color: #333;
}

@media screen and (max-width:800px) {
  .item_scroll table {
    font-size: 0.8em;
  }
}

.sort_comment {
  font-size: 0.9em;
  letter-spacing: 0.7px;
  line-height: 1.7;
  margin: 0.5em;
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width:800px) {
  .sort_comment {
    font-size: 0.8em;
  }
}

.waribiki_box {
  margin: 1em;
  padding-bottom: 1em;
  border-radius: 10px;
  border: #d2d7e5 solid 1px;
  line-height: 1.7;
  letter-spacing: 0.3px;
  font-size: 0.9em;
}

.waribiki_box .waribiki_tit {
  text-align: center;
  font-size: 1.1em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  background: #ffc153;
  color: #fff;
  font-weight: 600;
  border-radius: 0.5em 0.5em 0 0;
}

.waribiki_box ul.icon_list img {
  width: 100%;
  height: auto;
  max-width: 40px;
}

.waribiki_box ul.icon_list {
  margin: 0 0.5em;
}

.waribiki_box ul.icon_list li {
  display: flex;
  gap: 0.5em;
  align-items: center;
  margin-bottom: 0.5em;
}

.waribiki_box p.waribiki_note {
  margin: 0 0.5em;
  text-indent: -1em;
  padding-left: 1em;
}

.waribiki_max {
  text-align: center;
  margin-bottom: 1em;
}

.waribiki_max p {
  display: inline-block;
  background: linear-gradient(transparent 64%, #ffc153 65%);
  padding: 0 0.5em;
}

.waribiki_max span {
  font-size: 1.5em;
  padding: 0.2em;
  color: #f74545;
  font-weight: 600;
}

@media screen and (min-width:900px) {
  .waribiki_box {
    width: 600px;
    margin: 3em auto;
  }

  .waribiki_max p {
    background: linear-gradient(transparent 58%, #ffc153 56%);
  }
}

/* pick_link */
a.pick_link {
  display: block;
  max-width: 300px;
  text-decoration: none;
  margin: 1em auto;
  border: 1px solid #959595e8;
  border-radius: 10px;
  color: #333333de !important;
}

a.pick_link img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

a.pick_link p.txt {
  font-size: 1em;
  font-weight: 600;
  padding: 0.5em;
}

p.pick_link_tit {
  margin: 1.5em 1em 0.5em;
  font-weight: 500;
  font-size: 1.15em;
  color: #333;
}

@media screen and (min-width: 768px) {
  a.pick_link {
    max-width: 520px;

    p.txt {
      font-size: 1.1em;
    }
  }
}

.cta_img img {
  height: auto;
  width: 100%;
  cursor: pointer;
}

.swp .cta_img {
  width: 45%;
  margin: auto;
}

.cta_img {
  margin: 0.5em auto;
  text-align: center;
}

.cta_flex {
  display: flex;
  justify-content: space-around;
}

.cta_flex > * {
  flex-basis: 45%;
}

/*q_and_a*/
.q_and_a  {
  margin-bottom: 20px;
	margin-right: 10px;
	line-height: 2;

  .question {
    font-weight: bold;

    &::before {
      content: "Ｑ";
      padding: 0.1em 0.25em;
      margin-right: 0.5em;
      background: #89c3eb;
      border-radius: 0.3em;
      font-size: 1.3em;
      font-weight: 600;
      color: white;
    }
  }

  .answer {
		text-indent: -2.7em;
		padding-left: 2.7em;
  
    &::before {
      content: "Ａ";
      padding: 0.1em 0.25em;
      margin-right: 0.25em;
      background: #ee827c;
      border-radius: 0.3em;
      font-size: 1.3em;
      font-weight: 600;
      color: white;
    }
  }
}

/* accordion */
.accordion_bt{
  display: none;
}

.accordion{
  display: block;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(45,4,0,0.95);
  background: rgba(244,236,225,0.3);
  border: solid 1px rgba(45,4,0,0.3);
  padding: 8px 30px 8px 15px;
  margin-bottom: 3px;
  border-radius: 4px;
  position: relative;
  text-indent: 0em;

  &::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 18px;
    margin: auto;
    vertical-align: middle;
    width: 5px;
    height: 5px;
    border-top: 1px solid rgba(45,4,0,0.45);
    border-right: 1px solid rgba(45,4,0,0.45);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  &:hover::after{
    width: 8px;
    height: 8px;
    border-width:2px;
    -moz-transition: width .3s ease-out;
    -webkit-transition: width .3s ease-out;
    transition: width .3s ease-out;
    -moz-transition: height .3s ease-out;
    -webkit-transition: height .3s ease-out;
    transition: height .3s ease-out;
  }
}

.accordion_area{
  height: 0;
  opacity: 0;
  padding: 0 10px;
  transition: .5s;
  visibility: hidden;
}

.accordion_bt:checked+.accordion{
  opacity: 0.75;
}

.accordion_bt:checked+.accordion:after{
  transform: rotate(135deg);
  transition: .5s;
}

.accordion_bt:checked+.accordion+.accordion_area{
  height: auto;
  opacity: 1;
  padding: 10px;
  visibility: visible;
}