/* CSS Document */
/*内容を貰うための色変*/
.red{
  color: red;
}
.block{
  display: block;
  border: solid 1px red;
}
.kakunin{
  border: solid 1px red;
  box-sizing: border-box;
  display: block;
}
.kakunin:not(:first-of-type){
  margin-top: 0.25rem;
}
.kakunin > .k_title{
  display: table;
  padding: 0 0.5rem;
  background-color: red;
  color: #fff;
  font-weight: 700;
}
.kakunin > .k_text{
  color: red;
  display: block;
  line-height: 1.25rem;
  padding: 0.25rem 0.5rem;
}
/*ボタン*/
div.sidebtn{
  margin-bottom: 1rem;
  width: calc(100% - 1rem);
  margin-left: 1rem;
}
body[wc-view-type="sp"] div.sidebtn{
  margin: 0 auto 1rem auto;
  width: calc(100% - 2rem);
}
body[wc-view-type="sp"] div.sidebtn:first-child{
  padding-top: 1rem;
}
div.sidebtn.m_none{
  margin-bottom: 0;
}
div.sidebtn a{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0 calc(var(--headerBtnSize) + 1rem ) 0 1.5rem;
  text-decoration: none;
  background-color: var(--defaultcolor);
  color: #fff;
  font-weight: 700;
  height: calc(var(--headerBtnSize) * 2);
  width: 100%;
  box-sizing: border-box;
}
div.sidebtn a::after{
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  width: calc(var(--headerBtnSize) - 6px);
  height: calc(var(--headerBtnSize) - 6px);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
div.sideinner{
  padding-bottom: var(--headerHeight);
}
/*隠しタイトル*/
span.opacity{
  width: 0;
  height: 0;
  opacity: 0;
  display: block;
}
/**/
.wccolumnwrap{
  border-top: 1px solid #c3c3c3;
}
main{
  border-right: 1px solid #c3c3c3;
  box-sizing: border-box;
  background: -webkit-linear-gradient(top, rgba(0,153,238,1) 0%,rgba(19,172,103,1) 100%);
  background: linear-gradient(to bottom, rgba(0,153,238,1) 0%,rgba(19,172,103,1) 100%);
  padding-bottom: var(--headerHeight);
}
body[wc-view-type="sp"] main{
  padding-bottom: 0;
}
/*コンセプト*/
section.concept{
  padding: var(--headerHeight) 0 0 0;
  position: relative;
  z-index: 1;
}
section.concept div.title{
  display: table;
  margin: 0 auto 1rem auto;
  position: relative;
  z-index: 3;
}
section.concept div.title > h1{
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  box-sizing: border-box;
  text-align: center;
}
section.concept div.title > span{
  font-size: 1rem;
  color: #fff;
  display: table;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
  font-weight: 700;
  margin: 0 auto;
  font-family: 'Oswald';
}
section.concept div.title > span::before,
section.concept div.title > span::after{
  content: "";
  height: 2px;
  width: 1.5rem;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 2;
}
section.concept div.title > span::before{
  left: 0;
}
section.concept div.title > span::after{
  right: 0;
}
section.concept > figure{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,0.75) 70%,rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(0,0,0,0.75) 70%,rgba(0,0,0,0) 100%);
}
section.concept > figure img{
  width: 100%;
  object-fit: cover;
  height: 350px;
  object-position: center;
}
section.concept > p{
  position: relative;
  z-index: 3;
  line-height: 1.8rem;
  margin: 0 1.5rem;
  padding: 1rem;
  background-color: var(--brightColorA75);
  border-radius: 0.75rem;
  box-sizing: border-box; 
}
/*お悩みありませんか*/
div.examplearea{
  padding: var(--headerHeight) 0;
}
body[wc-view-type="pc"] div.examplearea dl.worries_area{
  margin: -1.625rem 3rem 0;
  width: calc(100% - 6rem);
}
div.examplearea dl.worries_area dt{
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accentcompcolor);
  text-align: center;
}
div.examplearea dl.worries_area dd{
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}
div.examplearea dl.worries_area dd::after{
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: -1rem;
  clip-path: polygon(0 25vw, 100% 0%, 100% calc(100% - 25vw), 0% 100%);
  background: -webkit-linear-gradient(left, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0.5) 38%,rgba(255,255,255,0) 100%);
  background: linear-gradient(to right, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0.5) 38%,rgba(255,255,255,0) 100%);
}
body[wc-view-type="pc"] div.examplearea dl.worries_area dd::after{
  display: none;
}
div.examplearea dl.worries_area dd ul{
  list-style:none;
  box-sizing: border-box;
}
div.examplearea dl.worries_area dd ul li{
  line-height: 1.8rem;
  color: var(--defaultcolor);
  margin-bottom: 1rem;
  background-color: var(--brightColorA75);;
  border-radius: 0.75rem;
  padding: 1rem;
  box-sizing: border-box;
  font-weight: 700;
}
div.examplearea dl.worries_area dd ul li:last-child{
  margin-bottom: 0;
}
div.examplearea dl.relief_area{
  padding-bottom: 2rem;
}
div.examplearea dl.relief_area dt{  
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  color: #fff;
  background-color: rgba(0,0,0,0);
  line-height: 3rem;
  padding-bottom: 1rem;
  text-align: center;
  margin: 0 1.7rem;
}
.examplearea .relief_area dt span[wc-text-be]::before {
  font-weight: 700;
}
body[wc-view-type="pc"] .examplearea .relief_area dt span[wc-text-be]::before{
  content: "マリンリゾート小豆島なら！";
}
body:not([wc-view-type="pc"]) .examplearea .relief_area dt span[wc-text-be]::before{
  content: "当施設なら！";
}
body[wc-view-type="pc"] div.examplearea dl.relief_area dt{
  padding-right: 3rem;
  padding-left: 3rem;
  display: table;
  margin: 0 auto;
}
div.examplearea dl.relief_area dt::before{
  content: "";
  display: block;
  width: 100%;
  height: 4rem;
  background-color:#ff716b;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  clip-path: polygon( 10% 0, 10% 25%, 0 25%, 5% 62.5%, 0 100%, 15% 100%, 15% 75%, 85% 75%, 85% 100%, 100% 100%, 95% 62.5%, 100% 25%, 90% 25%, 90% 0);
}
div.examplearea dl.relief_area dt::after{
  content: "";
  display: block;
  width: 100%;
  height: 1rem;
  background-color: rgba(0,0,0,0.5);
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  clip-path: polygon(10% 0%, 15% 100%, 15% 0%, 85% 0%, 85% 100%, 90% 0%);
}
div.examplearea dl.relief_area dd{
  padding: 1.625rem 0.5rem 1.5rem 3rem;
  background-color: #fff;
  overflow: hidden;
}
body[wc-view-type="sp"] div.examplearea dl.relief_area dd {
  margin: -1.625rem 0.5rem 0;
}
body[wc-view-type="tb"] div.examplearea dl.relief_area dd{
  margin: -1.625rem 0 0 0;
}
body[wc-view-type="pc"] div.examplearea dl.relief_area dd {
  margin: -1.625rem 3rem 0;
  width: calc(100% - 6rem);
  box-sizing: border-box;
}
div.examplearea dl.relief_area dd ul{
  list-style: none;
  list-style-position: outside;
}
div.examplearea dl.relief_area dd ul li{
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  line-height: 1.5rem;
  font-weight: 700;
  color: #333;
}
div.examplearea dl.relief_area dd ul li::before,
div.examplearea dl.relief_area dd ul li::after{
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
}
div.examplearea dl.relief_area dd ul li::before{
  width: calc( 1.5rem - 4px);
  height: calc( 1.5rem - 4px);
  background-color: #ffe5e4;
  border: solid 2px #ffaaa5;
  top: 0;
  left: -2rem;
}
div.examplearea dl.relief_area dd ul li::after{
  width: calc( 1.5rem - 8px);
  height: calc(( 1.5rem - 8px ) / 2);
  border-bottom: solid 2px #ff716b;
  border-left: solid 2px #ff716b;
  top: 0.25rem;
  left: -1.8rem;
  transform: rotate(-45deg);
}
section.topcontents{
}
section.topcontents div.inner{
  background-color: var(--wcBg);
}
section.topcontents div.inner > h1{
  font-size: 1.5rem;
  color: var(--defaultcolor);
  font-weight: 700;
  position: relative;
  z-index: 1;
  padding: 1rem;
  box-sizing: border-box;
}
section.topcontents div.inner > h1::after{
  font-size: 0.8rem;
  left: 1rem;
  bottom: 0;
  font-family: 'Oswald';
  position: absolute;
  left: 1rem;
  z-index: 2;
  opacity: 0.5;
}
section.topcontents div.inner > p{
  line-height: 1.8rem;
  padding: 1rem;
  box-sizing: border-box;
}
div.guidecontents{
  position: relative;
  z-index: 1;
}
div.guidecontents div.map{
  /*position: sticky;
  left: 0;
  top: var(--headerHeight);
  right: 0;
  z-index: 2;
  width: 100%;*/
}
div.guidecontents div.map picture img{
  width: 100%;
  object-fit: cover;
  height: 100%;
}
div.guidecontents ul{
  list-style: none;
  list-style-position: outside;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
  padding-bottom: 2rem;
}
body[wc-view-type="sp"] div.guidecontents ul,
body[wc-view-type="tb"] div.guidecontents ul{
  padding-bottom: 1rem;
}
div.guidecontents ul li{
  margin-bottom: 2rem;
}
div.guidecontents ul li:first-child{
  padding-top: 2rem;
}
div.guidecontents ul li:last-child{
  margin-bottom: 0;
}
div.guidecontents ul li dl{
}
div.guidecontents ul li dl dt{
  font-size: 1.2rem;
  color: var(--defaultcolor);
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
}
div.guidecontents ul li dl dt::before{
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  background-color: #ffaaa5;
  color: #fff;
  display: inline-block;
  text-align: center;
  margin-right: 0.5rem;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
div.guidecontents ul li dl dd{
}
body[wc-view-type="pc"] div.guidecontents ul li dl dd{
  display: flex;
}
div.guidecontents ul li:nth-of-type(even) dl dd{
  flex-direction: row-reverse;
}
body[wc-view-type="pc"] div.guidecontents ul li figure,
body[wc-view-type="pc"] div.guidecontents ul li p{
  width: 50%;
}
div.guidecontents ul li p{
  line-height: 1.8rem;
  box-sizing: border-box;
}
body[wc-view-type="sp"] div.guidecontents ul li p,
body[wc-view-type="tb"] div.guidecontents ul li p{
  padding: 1rem;
  padding-bottom: 0;
}
body[wc-view-type="pc"] div.guidecontents ul li:nth-of-type(even) dl dd p{
  padding-right: 2rem;
}
body[wc-view-type="pc"] div.guidecontents ul li:nth-of-type(odd) dl dd p{
  padding-left: 2rem;
}
div.guidecontents ul li figure img{
  width: 100%;
  object-fit: cover;
  height: 100%;
}