@charset "UTF-8";
/* Sass Document */
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
html, body {
  height: 100%;
  background: #fff;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 2.1;
  list-style-type: none;
  font-style: normal;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: left;
  color: #3a3a3a;
  letter-spacing: 0;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

p, li, dt, dd, th, td, form {
  font-size: 1.6rem;
}

h1, h2, h3 {
  line-height: 1.2;
}

figure {
  margin: 0;
}

body {
  min-width: 1280px;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}
@media (min-width: 768px) {
  a[href*="tel:"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
  }
}
#main {
  display: block;
}

.wrap {
  width: 1000px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
  max-width: 100%;
}
.wrap.narrow {
  width: 780px;
}

.bg-gray {
  background: #f3f3f3;
}

a {
  color: currentColor;
  text-decoration: none;
  transition: 0.3s;
}
a:focus, *:focus { outline:none; }

.en {
  font-family: 'Roboto', sans-serif;
}

.jp {
  font-family: 'Noto Sans JP', sans-serif;
}

.txt {
  font-size: 1.6rem;
}

.bold {
  font-weight: bold;
}

/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/
@media print {
  .drawer {
    height: auto !important;
  }
}

#header {
  background-color: #ffffff;
  /*	position: fixed;
  	top: 0;
  	left: 0;
  	right: 0;
  	z-index: 100;*/
  min-width: calc(110rem + 14rem);
  width: 100%;
  padding: 15px 10px 15px;
}
@media print {
  #header {
    min-width: inherit;
  }
}

.headerwrap {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: calc(152rem);
  width: 100%;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
}

.h_logo {
  width: auto;
  flex-shrink: 0;
  font-size: 1.4rem;
}
.h_logo-link {
  display: flex;
  align-items: center;
}
.h_logo-link-txt {
  margin-left: 5px;
  margin-right: 5px;
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .h_logo-link:hover {
    opacity: 0.7;
  }
}

.h_tel_info {
  font-size: 1.4rem;
  margin-right: 20px;
}

.h_tel {
  font-size: 2.2rem;
  font-weight: bold;
  margin-right: 20px;
}

.h_contact a {
  display: block;
  line-height: 1;
}
@media print, screen and (min-width: 768px) {
  .h_contact a:hover {
    opacity: 0.7;
  }
}

#menu {
  padding: 36px 0;
}
#menu .wrap {
  width: 1240px;
}
#menu .gnavi {
  display: flex;
  justify-content: space-around;
}
#menu .gnavi li {
  font-size: 2.3rem;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

/*
input[type='checkbox'],
input[type='radio'] {
  visibility: hidden;
  width: 1px;
  position: absolute;
  top: 0;
  left: 0;*/
  /* IE11だとクリックでページがうごくからIE11のみ position: static;*/
/*}
*/

input,select,button,textarea{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  border-radius: 0;
  padding: 0;
  font-family:inherit;font-size:inherit;font-weight:inherit;
}
input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ------------------------------
    clearfix
------------------------------ */
.cf:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.cf {
  display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
  height: 1%;
}

.cf {
  display: block;
}

/* End Hack */
/* ----------------------------------------------------------------------------------------------------
*  フッター
* --------------------------------------------------------------------------------------------------*/
#footer {
  min-width: 1280px;
  padding: 65px 0 30px;
}
#footer .f_link {
  display: flex;
  justify-content: center;
}
#footer .f_link li {
  color: #0080ff;
}
#footer .f_link li + li::before {
  content: "｜";
  margin: 0 1em;
  color: #333333;
}
#footer .f_bnr {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  margin-bottom: 55px;
}
#footer .cpy {
  font-size: 1.2rem;
  color: #333333;
  text-align: center;
}

/*--------------------- section ----------------*/
.section {
  padding: 12rem 0 10rem;
  margin: 0 20px;
  display: block;
}

/*-------------------- parts ----------------*/
.btn {
  width: 205px;
  height: 60px;
}
.btn.ma {
  margin-left: auto;
  margin-right: auto;
}
.btn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  font-size: 1.6rem;
  text-align: center;
  transition: 0.3s;
}
@media print, screen and (min-width: 768px) {
  .btn a:hover {
    opacity: 0.7;
  }
}
.btn.btn_w a {
  background-color: #ffffff;
}
.btn.btn_red {
  width: 410px;
  max-width: 100%;
  height: 120px;
}
.btn.btn_red a {
  font-size: 3.2rem;
  font-weight: bold;
  border-radius: 60px;
  background-color: #ff2832;
  color: #ffffff;
}
.btn.btn_gray a {
  background-color: #808080;
  color: #ffffff;
}

.opt .wrap {
  background-color: #333333;
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.2);
  padding: 60px 0 55px;
}
.opt .opt_ttl {
  font-size: 2.4rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}
.opt .opt_btn01 {
  margin: 23px auto 44px;
}
.opt .opt_txt01 {
  color: #ffffff;
  text-align: center;
}
.opt .opt_tel {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  margin: 13px auto 0;
}
.opt .opt_txt02 {
  color: #ffffff;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

/* ------------------------------
    ページタイトル
------------------------------ */
.pttlbox{
  position: relative;
  height: 300px;
  padding-top: 114px;
  line-height: 1;
  margin: 0 20px;
}
.pttlbox .pttl{
  font-size: 5rem;
  font-weight: bold;
  position: relative;
  z-index: 2;
  text-align: center;
  line-height: 1;
}
.pttlbox p{
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 30px;
  line-height: 1;
  font-size: 1.4rem;
}
.pttlbox .pttl_r{
  position: absolute;
  top: 0;
  right: 0;
}
.pttlbox .pttl_l{
  position: absolute;
  top: 0;
  left: 0;
}


/* ------------------------------
    パンくず
------------------------------ */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  line-height: 1;
  align-items: center;
  font-size: 1.6rem;
  margin: 12px 20px;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  position: relative;
  margin-right: 1em;
}
.breadcrumb li a {
  color: #4073AF;
  display: block;
  line-height: 1;
}
.breadcrumb li+ li{
}
.breadcrumb li+ li:before {
  content: "/";
  display: inline-block;
  position: relative;
  padding-right: 1em;
  vertical-align: middle;
}
.breadcrumb li a:hover {
    opacity: 0.6;
}

/* ------------------------------
    btnbox
------------------------------ */
.btnbox{
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btnbox a{
  display: flex;
  line-height: 1;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  height: 60px;
  color: #fff;
  font-size: 1.4rem;
  transition: .3s;
}
.btnbox a:hover{
  opacity: 0.7;
}
.btnbox .btn_red{
  background: #FF2832;
}
.btnbox .btn_pop{
  background: #C5A8C5;
}
.btnbox .btn_prev{
  background: #808080;
}


/* ------------------------------
    text
------------------------------ */
.txt_red{
  color: #FF2832;
}


/* ------------------------------
    form
------------------------------ */
.form_radio{
  display: flex;
}
.form_radio li{
}
.form_radio li+li{
  margin-left: 35px;
}
input[type="radio"]{
  /*visibility:hidden;*/
  width:1px;
  padding: 0;
  position: absolute;
  line-height: 1;
}
input[type="radio"] + label{
  position:relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  line-height: 1;
  padding-left: 30px;
  transition: .3s;
}
input[type="radio"] + label:before{
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background: #E2E2E2;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
input[type="radio"] + label::after{
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  background: #FF2832;
  border-radius: 50%;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
input[type="radio"]:checked + label::after{
  opacity: 1;
}
input::placeholder, textarea::placeholder {
  color: #AFAFAF;
}
/* IE */
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #AFAFAF;
}
/* Edge */
input::-ms-input-placeholder, textarea::-ms-input-placeholder{
  color: #AFAFAF;
}
textarea{
  resize: vertical;
    overflow: auto;
}

.selectwrap{
  position: relative;
  width: 210px;
  height: 30px;
  background: #E2E2E2;
  z-index: 1;
}


.selectwrap:after{
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 6px 0 6px;
  border-color: #fff transparent transparent transparent;
  top: 50%;
  transform: translateY(-50%);
  right: 9px;
}
.selectwrap:before{
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0;
  top: 0;
  background: #7EC0B6;
  z-index: -1;
}


.selectwrap select{
  width: 100%;
  height: 100%;
  background:none;
  padding: 0 0.5em;
}
select::-ms-expand {
    display: none;
}

.checkbox input{
  visibility: hidden;
  display: none;
}
.checkbox label{
    position: relative;
    padding-left: 27px;
    cursor: pointer;
}

.checkbox label{}
.checkbox label::before{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  width: 20px;
  height: 20px;
  background:#E2E2E2;

}
.checkbox input:checked + label::after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: url(../images/common/ico_check.png);
  background-size: contain;
  width: 20px;
  height:20px;

}

.checkli{}
.checkli li{
  display: inline-block;
  padding-right: 24px;
}
.check_max2 input:disabled + label{
  opacity: 0.6;
  cursor: default;
}

/* ------------------------------
    popup
------------------------------ */
/* mfp-bg（overlay） */
.mfp-bg{
  opacity: 0;
  transition: all 0.2s ease-out;
  background: #000;
}
.mfp-bg.mfp-ready {
  opacity: 0.7;
}
.mfp-bg.mfp-removing {
  opacity: 0;
}

/* mfp-content */
.mfp-content {
  opacity: 0;
  transition: all 0.2s ease-out;
}
.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-content {
  opacity: 0;
}

.pop_content{
  background: #fff;
  width: 780px;
  margin: 0 auto;
  padding: 80px;
}

.pop_content .pop_ttl{
  background: #FFDFE0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 620px;
  height: 80px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
  color: #FF2832;
  margin-bottom: 50px;
}

.pop_content p{
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: -0.05em;
}
.pop_content .img{
  width: 100%;
  text-align: center;
}
.pop_content .pamph_3ori{
  margin: 80px auto 40px;
}

.pop_content .mfp-close{
  left: 50%;
  margin-left: 330px;
  width: 60px;
  height: 60px;
  overflow: hidden;
  text-indent: -999px;
  transition: .3s;
}
.pop_content .mfp-close:hover{
  opacity: 0.7;
}
.pop_content .mfp-close:before,
.pop_content .mfp-close:after{
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 4px;
  background: #333;
  top: 50%;
  left: 16px;
  transform-origin: center;
  margin-top: -2px;
}

.pop_content .mfp-close:before{
  transform: rotate(45deg) ;
}
.pop_content .mfp-close:after{
  transform: rotate(-45deg);
}


/*--slick--*/
.slick-slide{
  outline: none;
}
.pop2_slick{
}
.pop2_slick li{
}
.pop2_slick .img {
  padding-top: 86px;
  height: 570px;
}
.pop2_slick .img img{
  display: block;
  margin: 0 auto;
  height: 352px;
  border:1px solid #959595;
}
.pop2_slick .slick-arrow{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #FF2832;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  text-indent: -9999px;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  transition: .3s;
}
.pop2_slick .slick-arrow:hover{
  opacity: 0.7;
}

.pop2_slick .slick-arrow:after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  transform: translate(-50%,-50%);
  z-index: 2;
}
.pop2_slick .slick-next{
  right: -110px;
}
.pop2_slick .slick-next:after{
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.pop2_slick .slick-prev{
  left: -110px;
}
.pop2_slick .slick-prev:after{
  border-width: 9px 15px 9px 0;
  border-color: transparent #fff transparent transparent;
  margin-left: -3px;
}
.pop2_slick .omote_img{
  display: flex;
  justify-content: center;
  border:1px solid #959595;
  width:493px;
  margin-left: auto;
  margin-right: auto;
}
.pop2_slick .omote_img img{border:none!important;}

.pop2_slick .layout_page{
  display: flex;
  width:493px;
  margin: 15px auto 0;
}
.pop2_slick .layout_page li{
  width: 33.3%;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.16;
  white-space: nowrap;
}
.pop_tbl{
  margin-top: 30px;
  margin-bottom: 30px;
  border-collapse:separate;
  border-spacing:6px;
  width: 100%;
}
.pop_tbl th, .pop_tbl td{
  padding: 0 0.4em;
  letter-spacing: -0.05em;
}
.pop_tbl th{
  background: #666;
  color: #fff;
  min-width: 114px;
  font-weight: normal;
  vertical-align: top;
}
.pop_tbl td{
  background: #eee;
}

