/*------------------------
		saipan
------------------------*/

/* section_01 */
.section_01 {
  position: relative;
  background-image: url(../images/saipan/saipan_bg.jpg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section_01 .copyright {
  position: absolute;
  top: 8px;
  right: 20px;
  font-family: 'Eurostile', sans-serif;
  font-size: 12px;
  color: #fff;
}

.section_01 .section_inner {
  width: 1200px;
  margin: 0 auto;
  padding-top: 135px;
  padding-bottom: 60px;
}

.section_01 .country {
  font-family: 'GildaDisplay-Regular', serif;
  font-size: 240px;
  color: #fff;
  text-align: center;
  margin-bottom: 120px;
  letter-spacing: 0.1em;
}

.section_01 .title {
  font-family: 'SawarabiMincho-Regular', serif;
  font-size: 40px;
  text-align: left;
  margin-bottom: 40px;
}

.section_01 .text {
  width: 1000px;
  font-family: 'SawarabiMincho-Regular', serif;
  font-size: 16px;
  line-height: 28px;
  text-align: left;
}

@media screen and (min-width:800px) and (max-width:1200px) {
  .section_01 .copyright {
    font-size: 1vw;
  }

  .section_01 .section_inner {
    padding-left: 50px;
    width: 100%;
  }

  .section_01 .country {
    font-size: 20vw;
  }

  .section_01 .title {
    font-size: 3.3vw;
  }

  .section_01 .text {
    width: 100%;
    max-width: 1000px;
    font-size: 1.3vw;
    line-height: 2.3vw;
  }
}

@media screen and (max-width:799px) {
  .section_01 {
    background-color: #f2f3ef;
    background-position: top center;
    background-size: contain;
  }

  .section_01 .copyright {
    font-size: 5px;
    color: #fff;
    top: 10px;
  }

  .section_01 .section_inner {
    width: 100%;
    padding: 100px 20px 50px;
  }

  .section_01 .country {
    font-size: 72px;
    margin-bottom: 50px;
  }

  .section_01 .title {
    font-size: 24px;
    line-height: 37px;
    margin-bottom: 25px;
  }

  .section_01 .text {
    width: 100%;
    font-size: 12px;
    line-height: 21px;
  }
}

/* section_02 */
.section_02 {
  width: 100%;
  overflow: hidden;
}

.section_02 .box {
  width: 100%;
  position: relative;
  display: block;
}

.section_02 .box_item {
  width : 33.33333% ; /* 未対応ブラウザ用フォールバック */
  width : -webkit-calc(100% / 3);
  width : calc(100% / 3);
  height: 768px;
  float: left;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 50px 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.section_02 .box_item:nth-child(1) {
  background-image: url(../images/saipan/box01_bg_01.jpg);
}

.section_02 .box_item:nth-child(3) {
  background-image: url(../images/saipan/box01_bg_02.jpg);
}

.section_02 .box_item:nth-child(5) {
  background-image: url(../images/saipan/box01_bg_03.jpg);
}

.section_02 .box_item .box_title {
  font-family: 'SawarabiMincho-Regular', serif;
  font-size: 28px;
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
}

.section_02 .box_item .highlight {
  font-family: 'Eurostile', sans-serif;
  font-size: 12px;
  text-align: center;
  color: #fff;
  margin-bottom: 45px;
  letter-spacing: 0.01em;
}

.section_02 .box_item .box_text {
  font-family: 'NotoSansJP-Regular', sans-serif;
  font-size: 14px;
  line-height: 30px;
  color: #fff;
}
.section_02 .box_item .link {
  display: block;
  margin-top: 30px;
  border: 1px solid #231916;
  color: #231916;
  padding: 15px 0;
  text-align: center;
  font-family: 'NotoSansJP-Bold', sans-serif;
  font-size: 14px;
}

.section_02 .box_item .link {
  color: #fff;
  border: 1px solid #fff;
}

.section_02 .box_item:hover div.hoverbox{
  opacity: 1;
  visibility: visible;
}

.section_02 .hoverbox {
  display: block;
}

.section_02 .hoverbox_item {
  width : 33.33333% ; /* 未対応ブラウザ用フォールバック */
  width : -webkit-calc(100% / 3);
  width : calc(100% / 3);
  float: left;
  height: 100%;
  padding: 100px 50px 0;
}

.section_02 .hoverbox_item.hoverbox_item-img {
  padding: 0;
}

.section_02 .hoverbox_item .hoverbox_item_img {
  width: 100%;
  height: 50%;
}

.section_02 .box_item .hoverbox {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 768px;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: none;
}

.section_02 .box_item .hoverbox .hoverbox_wrapper {
  width : 33.33333% ; /* 未対応ブラウザ用フォールバック */
  width : -webkit-calc(100% / 3);
  width : calc(100% / 3);
  background-color: #0065d5;
  padding: 30px 40px;
}

  .section_02 .box .box_item .overlay {
    display: none;
  }

@media screen and (min-width:800px) and (max-width:1200px) {
  .section_02 .box_item {
    padding: 8.3vw 4.1vw 0;
    height: 64vw;
  }

  .section_02 .box_item .box_title {
    font-size: 2.2vw;
    margin-bottom: 1.25vw;
  }

  .section_02 .box_item .highlight {
    font-size: 1vw;
    margin-bottom: 3.75vw;
  }

  .section_02 .box_item .box_text {
    font-size: 1.1vw;
    line-height: 2.5vw;
  }

  .section_02 .box_item .hoverbox {
    height: 64vw;
  }

  .section_02 .box_item .hoverbox .hoverbox_wrapper {
    width: 33.3333%;
    background-color: #0065d5;
    padding: 2.5vw 2vw;
  }
}

@media screen and (max-width:799px) {
  .section_02 {
    width: 100%;
  }

  .section_02 .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .section_02 .box_item {
    width: 100%;
    height: 400px;
    padding: 60px 50px 0;
    background-position: bottom center;
  }

  .section_02 .box_item:nth-child(1) {
    background-image: url(../images/saipan/sp_box01_bg_01.jpg);
  }

  .section_02 .box_item:nth-child(2) {
    background-image: none;
  }

  .section_02 .box_item:nth-child(3) {
    background-image: url(../images/saipan/sp_box01_bg_02.jpg);
  }

  .section_02 .box_item:nth-child(5) {
    background-image: url(../images/saipan/sp_box01_bg_03.jpg);
  }

  .section_02 .box_item .box_title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .section_02 .box_item .highlight {
    font-size: 11px;
    margin-bottom: 25px;
  }

  .section_02 .box_item .box_text {
    font-size: 12px;
    line-height: 22px;
  }

  .section_02 .box_item .icon {
    margin: 20px auto;
  }

  .section_02 .box_item.active .icon {
    transform: rotate(180deg);
  }

  .section_02 .box_item.sp-hoverbox {
    padding: 0;
    height: auto;
    display: none;
  }

  .section_02 .box:hover .box_item.sp-hoverbox {
    padding: 0;
  }

  .section_02 .sp-hoverbox .hoverbox_img {
    width: 100%;
    height: 200px;
  }

  .section_02 .box:hover .box_item {
    position: relative;
    width: 100%;
    padding: 60px 50px 0;
    -webkit-transition: none;
    transition: none;
  }

  .section_02 .box .box_item .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: ' ';
    pointer-events: none;
  }

  .section_02 .box:hover .box_item .box_item_wrapper {
    opacity: 1;
  }

  .section_02 .box:hover .box_item:hover {
    width: 100%;
    opacity: 1;
  }
  .section_02 .hoverbox {
    display: none;
  }
}

/* section_03 */
.section_03 {
  padding-top: 100px;
  background-color: rgba(204, 193, 147, 0.15);
}

.section_03 .section_inner {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  padding-bottom: 90px;
}

.section_03 .titleWapper {
  width: 280px;
  margin-bottom: 30px;
}

.section_03 .titleWapper .title {
  font-family: 'SawarabiMincho-Regular', serif;
  font-size: 40px;
  text-align: right;
  margin-bottom: 10px;
  color: #1a8bd3;
}

.section_03 .titleWapper .point {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Eurostile', sans-serif;
  font-size: 12px;
  text-align: right;
  color: #1a8bd3;
  letter-spacing: 0.1em;
}

.section_03 .titleWapper .point:before {
  content: '';
  width: 100vw;
  border-top: 1px solid #1a8bd3;
  margin-right: 10px;
}

.section_03 .titleWapper .point:after {
  position: absolute;
  top: 0;
  left: -100vw;
  bottom: 0;
  margin: auto;
  content: '';
  width: 100vw;
  height: 1px;
  background-color: #1a8bd3;
  margin-right: 10px;
}

.section_03 .calender img {
  width: 790px;
  height: 645px;
}

.section_03 .calender {
  width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.section_03 .calender .text {
  font-family: 'NotoSansJP-Regular', sans-serif;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  margin-bottom: 30px;
}

.section_03 .calender img {
  width: 1000px;
  height: 665px;
}

@media screen and (min-width:800px) and (max-width:1200px) {
  .section_03 .section_inner {
    width: 83.3vw;
  }

  .section_03 .titleWapper {
    width: 23.333vw;
  }

  .section_03 .titleWapper .title {
    font-size: 3.3vw;
  }

  .section_03 .titleWapper .point {
    font-size: 1vw;
  }

  .section_03 .calender {
    margin-left: 4vw;
  }

  .section_03 .calender {
    width: 83.3vw;
    margin: auto;
  }

  .section_03 .calender .text {
    font-size: 1vw;
    line-height: 2vw;
  }

  .section_03 .calender img {
    width: 83.3vw;
    height: 55vw;
  }
}

@media screen and (max-width:799px) {
  .section_03 {
    padding-top: 70px;
  }

  .section_03 .section_inner {
    width: 100%;
    padding-bottom: 50px;
  }

  .section_03 .titleWapper {
    width: 200px;
    margin-bottom: 40px;
  }

  .section_03 .titleWapper .title {
    font-size: 25px;
  }

  .section_03 .titleWapper .point {
    font-size: 12px;
  }

  .section_03 .calender {
    padding: 0 15px;
    margin-bottom: 25px;
  }

  .section_03 .calender {
    width: 100%;
  }

  .section_03 .calender .text {
    font-size: 12px;
    line-height: 21px;
  }

  .section_03 .calender_scroll {
    width: 100%;
    overflow: scroll;
  }

  .section_03 .calender img {
    width: auto;
    height: 450px;
  }
}

/* section_04 */
.section_04 {
  background-image: url(../images/saipan/section04_bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 100px;
}

.section_04 .section_inner {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  padding-bottom: 90px;
}

.section_04 .titleWapper {
  width: 720px;
}

.section_04 .titleWapper .title {
  font-family: 'SawarabiMincho-Regular', serif;
  font-size: 40px;
  text-align: left;
  margin-bottom: 10px;
  color: #fff;
}

.section_04 .titleWapper .point {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Eurostile', sans-serif;
  font-size: 12px;
  text-align: right;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.section_04 .titleWapper .point:before {
  content: '';
  width: 100vw;
  border-top: 1px solid #fff;
  margin-right: 10px;
}

.section_04 .titleWapper .point:after {
  position: absolute;
  top: 0;
  left: -100vw;
  bottom: 0;
  margin: auto;
  content: '';
  width: 100vw;
  height: 1px;
  background-color: #fff;
  margin-right: 10px;
}
.section_04 .diving-lead {
  padding: 0 0 40px 0;
}
.section_04 .diving-lead .text {
  font-family: 'NotoSansJP-Regular', sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}
.section_04 .titleWapper .text {
  font-family: 'NotoSansJP-Regular', sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}

.section_04 .box_02 {
}

.section_04 .box_02 .box_item {
  position: relative;
  width: 1000px;
  height: 540px;
  margin: 0 auto;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 0 0 100px;
  margin-bottom: 40px;
}

.section_04 .box_02 .box_item:nth-child(1) {
  background-image: url(../images/saipan/section04_img01.jpg);
}

.section_04 .box_02 .box_item:nth-child(2) {
  background-image: url(../images/saipan/section04_img02.jpg);
}

.section_04 .box_02 .box_title {
  position: relative;
  z-index: 5;
  font-family: 'GildaDisplay-Regular', sans-serif;
  font-size: 75px;
  color: #fff;
  letter-spacing: 0.05em;
}

.section_04 .box_02 .textbox {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(0, 27, 47, 0.4);
  padding: 170px 80px 0;
}

.section_04 .box_02 .textbox_title {
  font-family: 'SawarabiMincho-Regular', serif;
  font-size: 30px;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: 0.06em;
}

.section_04 .box_02 .textbox_caution {
  font-family: 'NotoSansJP-Regular', sans-serif;
  font-size: 13px;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 0.06em;
}

.section_04 .box_02 .textbox_text {
  font-family: 'NotoSansJP-Regular', sans-serif;
  font-size: 11px;
  line-height: 25px;
  color: #fff;
}

@media screen and (min-width:800px) and (max-width:1200px) {
  .section_04 .section_inner {
    width: 83.3vw;
  }

  .section_04 .titleWapper {
    width: 60vw;
  }

  .section_04 .titleWapper .title {
    font-size: 3.25vw;
  }

  .section_04 .titleWapper .point {
    font-size: 1vw;
  }

/*  .section_04 .titleWapper .text {
    font-size: 1.1vw;
    line-height: 2vw;
  }
*/
  .section_04 .box_02 .box_item {
    width: 83.3vw;
    height: 45vw;
  }

  .section_04 .box_02 .box_title {
    font-size: 6.25vw;
  }

  .section_04 .box_02 .textbox {
    padding: 14vw 6.6vw 0;
  }

  .section_04 .box_02 .textbox_title {
    font-size: 2.5vw;
  }

  .section_04 .box_02 .textbox_caution {
    font-size: 1vw;
  }

  .section_04 .box_02 .textbox_text {
    font-size: 0.9vw;
    line-height: 2vw;
  }
}

@media screen and (max-width:799px) {
  .section_04 {
    padding-top: 70px;
  }

  .section_04 .section_inner {
    padding: 15px;
    width: 100%;
    padding-bottom: 40px;
  }

  .section_04 .titleWapper {
    width: 330px;
    /*margin-bottom: 40px;*/
  }

  .section_04 .titleWapper .title {
    text-align: right;
    font-size: 25px;
    line-height: 30px;
  }
  .section_04 .diving-title {
    margin: -30px 0 30px;
    font-size: 15px;
  }
  .section_04 .diving-lead .text {
    font-size: 10px;
    line-height: 18px;
  }
  .section_04 .diving-lead {
    padding: 0 0 30px;
    overflow: hidden;
}
  .section_04 .titleWapper .point {
    font-size: 8px;
    margin-bottom: 30px;
  }

  .section_04 .titleWapper .text {
    font-size: 12px;
    line-height: 18px;
  }

  .section_04 .box_02 .box_item {
    position: relative;
    width: 100%;
    height: 540px;
    margin: 0 auto;
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .section_04 .box_02 .box_item:nth-child(1) {
    background-image: url(../images/saipan/sp_section04_img01.jpg);
  }

  .section_04 .box_02 .box_item:nth-child(2) {
    background-image: url(../images/saipan/sp_section04_img02.jpg);
  }

  .section_04 .box_02 .box_title {
    font-size: 45px;
    line-height: 50px;
  }

  .section_04 .box_02 .textbox {
    position: absolute;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 50%;
    padding: 30px 15px;
  }

  .section_04 .box_02 .textbox_title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
  }

  .section_04 .box_02 .textbox_caution {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .section_04 .box_02 .textbox_text {
    font-size: 12px;
    line-height: 18px;
  }
}

/* section_05 */
.section_05 {
  background-color: rgba(195, 184, 138, 0.1);
  padding-top: 100px;
}

.section_05 .section_inner {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  padding-bottom: 90px;
}

.section_05 .titleWapper {
  width: 400px;
  margin-bottom: 60px;
  text-align: right;
}

.section_05 .titleWapper .title {
  font-family: 'SawarabiMincho-Regular', serif;
  font-size: 40px;
  text-align: right;
  margin-bottom: 10px;
  color: #006b9e;
}

.section_05 .titleWapper .point {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Eurostile', sans-serif;
  font-size: 12px;
  color: #006b9e;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.section_05 .titleWapper .point:before {
  content: '';
  width: 100vw;
  border-top: 1px solid #006b9e;
  margin-right: 10px;
}

.section_05 .titleWapper .point:after {
  position: absolute;
  top: 0;
  left: -100vw;
  bottom: 0;
  margin: auto;
  content: '';
  width: 100vw;
  height: 1px;
  background-color: #006b9e;
  margin-right: 10px;
}

.section_05 .box_03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1000px;
  margin: 0 auto;
}

.section_05 .box_item {
  width: 300px;
  height: 400px;
  margin-bottom: 50px;
}

.section_05 .box_item {
  position: relative;
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 50px;
}

.section_05 .box_item:nth-child(1) {
  background-image: url(../images/saipan/section05_img01.jpg);
}

.section_05 .box_item:nth-child(2) {
  background-image: url(../images/saipan/section05_img01.jpg);
}

.section_05 .box_item:nth-child(3) {
  background-image: url(../images/saipan/section05_img01.jpg);
  margin-right: 0;
}

.section_05 .box_item:nth-child(4) {
  background-image: url(../images/saipan/section05_img01.jpg);
}

.section_05 .box_item:nth-child(5) {
  background-image: url(../images/saipan/section05_img01.jpg);
}

.section_05 .box_item:nth-child(6) {
  background-image: url(../images/saipan/section05_img02.jpg);
  margin-right: 0;
}

.section_05 .box_item .head {
  position: relative;
  width: 100%;
  height: 135px;
}

.section_05 .box_item .num {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  font-family: 'Eurostile', sans-serif;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: #fff;
  width: 70px;
  height: 20px;
  letter-spacing: 0.1em;
}

.section_05 .box_item .num:before {
  position: absolute;
  top: 10px;
  left: -15px;
  content: '';
  width: 15px;
  height: 1px;
  background-color: #fff;
}

.section_05 .box_item .num:after {
  position: absolute;
  top: 10px;
  right: -15px;
  content: '';
  width: 15px;
  height: 1px;
  background-color: #fff;
}

.section_05 .box_item .category {
  position: relative;
  top: 120px;
}

.section_05 .box_item .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section_05 .box_item .category span {
  font-family: 'NotoSansJP-Bold', sans-serif;
  font-size: 12px;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #208dd4;
  margin: 0 auto;
  text-align: center;
}

.section_05 .box_item span.category-bort {
  background-color: #208dd4;
}

.section_05 .box_item span.category-beach  {
  background-color: #ccc193;
}

.section_05 .box_item .textWrapper {
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/saipan/section05_bg.png);
  width: 100%;
  height: 265px;
  padding: 60px 15px 0;
  color: #fff;
}

.section_05 .box_item .textWrapper .title {
  font-family: 'NotoSansJP-Bold', sans-serif;
  font-size: 16px;
  line-height: 10px;
  margin-bottom: 20px;
}

.section_05 .box_item .textWrapper .text {
  font-family: 'NotoSansJP-Regular', sans-serif;
  font-size: 14px;
  line-height: 24px;
}

@media screen and (min-width:800px) and (max-width:1200px) {
  .section_05 .section_inner {
    width: 83.3vw;
  }

  .section_05 .titleWapper {
    width: 33.333vw;
  }

  .section_05 .titleWapper .title {
    font-size: 3.3vw;
  }

  .section_05 .titleWapper .point {
    font-size: 1vw;
  }

  .section_05 .box_03 {
    width: 83.3vw;
  }

  .section_05 .box_item {
    width: 25vw;
    height: 33.3vw;
  }

  .section_05 .box_item {
    margin-right: 4vw;
  }

  .section_05 .box_item .head {
    height: 11.25vw;
  }

  .section_05 .box_item .num {
    font-size: 1vw;
    line-height: 24px;
    width: 5.8vw;
    height: 20px;
  }

  .section_05 .box_item .num:before {
    left: -10px;
    width: 10px;
  }

  .section_05 .box_item .num:after {
    right: -10px;
    width: 10px;
  }

  .section_05 .box_item .category {
    top: 9.5vw;
  }

  .section_05 .box_item .category span {
    display: inline-block;
    top: 9.5vw;
    font-size: 1vw;
    width: 4vw;
    height: 4vw;
    line-height: 4vw;
  }

  .section_05 .box_item .textWrapper {
    width: 100%;
    height: 22vw;
    padding: 4vw 1.25vw 0;
  }

  .section_05 .box_item .textWrapper .title {
    font-size: 1.3vw;
    line-height: 0.8vw;
  }

  .section_05 .box_item .textWrapper .text {
    font-size: 1vw;
    line-height: 2vw;
  }
}

@media screen and (max-width:799px) {
  .section_05 {
    padding-top: 70px;
  }

  .section_05 .section_inner {
    padding: 15px;
    width: 100%;
    padding-bottom: 70px;
  }

  .section_05 .titleWapper {
    width: 250px;
    margin-bottom: 40px;
  }

  .section_05 .titleWapper .title {
    text-align: right;
    font-size: 25px;
    line-height: 30px;
  }

  .section_05 .titleWapper .point {
    font-size: 8px;
    margin-bottom: 30px;
  }

  .section_05 .box_03 {
    width: 100%;
  }

  .section_05 .box_item {
    width: 100%;
    height: 335px;
    margin-bottom: 15px;
    background-position: top center;
    background-size: cover;
  }

  .section_05 .box_item {
    margin-right: 0;
  }

  .section_05 .box_item .head {
    position: relative;
    width: 100%;
    height: 135px;
  }

  .section_05 .box_item .category {
    top: 110px;
    font-size: 2vw;
  }

  .section_05 .box_item .textWrapper {
    background-size: cover;
    width: 100%;
    height: 200px;
    padding: 50px 15px 0;
    color: #fff;
  }

  .section_05 .box_item .textWrapper .title {
    font-size: 14px;
    line-height: 10px;
    margin-bottom: 20px;
  }

  .section_05 .box_item .textWrapper .text {
    font-size: 12px;
    line-height: 18px;
  }
}

/* section_06 */
.section_06 {
  padding-top: 100px;
}

.section_06 .section_inner {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  padding-bottom: 90px;
}

.section_06 .titleWrapper {
  text-align: center;
  margin-bottom: 90px;
}

.section_06 .titleWrapper .icon {
  width: 100px;
  height: 77px;
  margin: 0 auto 40px;
}

.section_06 .titleWrapper .title {
  margin-bottom: 40px;
  font-family: 'SawarabiMincho-Regular', serif;
  font-size: 40px;
}

.section_06 .titleWrapper .text {
  font-family: 'NotoSansJP-Regular', sans-serif;
  font-size: 12px;
  line-height: 21px;
}

.section_06 .box_04 {
}

.section_06 .box_item {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  margin-bottom: 20px;
}

.section_06 .box_item .textWrapper {
  width: 250px;
  height: 460px;
  float: left;
  background-color: #231916;
  color: #fff;
  padding: 40px 15px 0;
}

.section_06 .box_item .textWrapper-yellow {
  background-color: #ffeb00;
  color: #231916;
}

.section_06 .box_item .textWrapper-blue {
  background-color: #1F4E7C;
}

.section_06 .box_item .textWrapper .date {
  font-family: 'Roboto-Thin', sans-serif;
  font-size: 30px;
  margin-bottom: 40px;
}

.section_06 .box_item .textWrapper .date span {
  font-size: 20px;
}

.section_06 .box_item .textWrapper .title {
  font-family: 'NotoSansJP-Bold', sans-serif;
  font-size: 15px;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.section_06 .box_item .textWrapper .case {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Eurostile', sans-serif;
  font-size: 12px;
  margin-bottom: 10px;
  white-space: nowrap;
}

.section_06 .box_item .textWrapper .case:before {
  content: '';
  width: 100vw;
  border-top: 1px solid #231916;
  margin-right: 10px;
}
.section_06 .box_item .textWrapper-blue .case:before {
  border-top: 1px solid #fff;
}

.section_06 .box_item .textWrapper .text {
  font-family: 'NotoSansJP-Regular', sans-serif;
  font-size: 12px;
  line-height: 20px;
}

.section_06 .box_item .textWrapper .link {
  display: block;
  margin-top: 30px;
  border: 1px solid #231916;
  color: #231916;
  padding: 15px 0;
  text-align: center;
  font-family: 'NotoSansJP-Bold', sans-serif;
  font-size: 14px;
}

.section_06 .box_item .textWrapper-blue .link {
  color: #fff;
  border: 1px solid #fff;
}

.section_06 .box_item .image {
  float: left;
  width: 750px;
}

.section_06 .colum2 {
  width: 500px;
  float: left;
}

.section_06 .colum2 .image {
  width: 250px;
}

@media screen and (min-width:800px) and (max-width:1200px) {
  .section_06 .section_inner {
    width: 83.3vw;
  }

  .section_06 .titleWrapper .title {
    font-size: 3.3vw;
  }

  .section_06 .titleWrapper .text {
    font-size: 1vw;
    line-height: 1.75vw;
  }

  .section_06 .box_item {
    height: 38vw;
  }

  .section_06 .box_item .textWrapper {
    width: 25%;
    height: 38vw;
    padding: 3.75vw 1.25vw 0;
  }

  .section_06 .box_item .textWrapper .date {
    font-size: 2.5vw;
    /*margin-bottom: 8.3vw;*/
  }

  .section_06 .box_item .textWrapper .date span {
    font-size: 1.6vw;
  }

  .section_06 .box_item .textWrapper .title {
    font-size: 1.25vw;
    margin-bottom: 1.6vw;
  }

  .section_06 .box_item .textWrapper .case {
    font-size: 12px;
  }

  .section_06 .box_item .textWrapper .text {
    font-size: 1vw;
    line-height: 1.6vw;
    letter-spacing: 0.1em;
  }

  .section_06 .box_item .textWrapper .link {
    margin-top: 2.5vw;
    padding: 1.25vw 0;
    font-size: 1.1vw;
  }

  .section_06 .box_item .image {
    width: 75%;
  }
  .section_06 .box_item .image img {
    width: 62.5vw;
    height: 38vw;
  }

  .section_06 .colum2 {
    width: 50%;
  }

  .section_06 .colum2 .textWrapper {
    width: 50%;
  }

  .section_06 .colum2 .image {
    width: 50%;
  }
  .section_06 .colum2 .image img {
    width: 100%;
  }
}

@media screen and (max-width:799px) {
  .section_06 {
    padding-top: 40px;
  }

  .section_06 .section_inner {
    width: 100%;
    padding: 15px;
    padding-bottom: 40px;
  }

  .section_06 .titleWrapper {
    text-align: center;
    margin-bottom: 20px;
  }

  .section_06 .titleWrapper .icon {
    width: 64px;
    height: 50px;
    margin: 0 auto 20px;
  }

  .section_06 .titleWrapper .title {
    margin-bottom: 20px;
    font-size: 25px;
  }

  .section_06 .titleWrapper .text {
    font-size: 14px;
  }

  .section_06 .box_04 {
    overflow: hidden;
  }

  .section_06 .box_item {
    position: relative;
    min-height: 400px;
    height: auto;
    margin-bottom: 10px;
  }

  .section_06 .box_item .textWrapper {
    position: absolute;
    width: 100%;
    min-height: 200px;
    height: auto;
    bottom: 0;
    padding: 20px;
    overflow: hidden;
  }

  .section_06 .box_item .textWrapper .date {
    width: 45px;
    display: inline-block;
    font-size: 15px;
    margin-bottom: 0;
    margin-right: 20px;
    height: 50px;
    float: left;
  }

  .section_06 .box_item .textWrapper .date span {
    font-size: 9px;
  }

  .section_06 .box_item .textWrapper .title {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 10px;
    float: left;
    width: 300px;
  }

  .section_06 .box_item .textWrapper .text {
    display: inline-block;
    width: 330px;
  }

  .section_06 .box_item .textWrapper .case {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .section_06 .accordion .box_item {
    position: relative;
    min-height: 100px;
  }

  .section_06 .accordion .box_item:after {
    position: absolute;
    content: '';
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .section_06 #accordion_01 .box_item:after {
    border-color: #000;
  }

  #accordion_01.active .box_item:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  #accordion_02.active .box_item:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .section_06  .accordion .textWrapper {
    padding: 15px 10px;
    min-height: 100px;
  }

 /* .section_06 .accordion  .textWrapper .case {
    margin-top: 20px;
  }*/

  .section_06 .box_item .textWrapper .case:before {
    display: none;
  }
  .section_06 .box_item .textWrapper-blue .case:before {
    display: none;
  }

  .section_06 .box_item .textWrapper .case:after {
    content: '';
    width: 80%;
    border-top: 1px solid #231916;
    margin-left: 10px;
  }
  .section_06 .box_item .textWrapper-blue .case:after {
    border-top: 1px solid #fff;
  }

  .section_06 .box_item .textWrapper .link {
    display: none;
  }

  .section_06 .box_item .image {
    width: 100%;
  }

  .section_06 .columns_2 .box_item {
    width: 100%;
  }

  .section_06 .columns_2 .box_item .image {
    width: 100%;
  }

  .section_06 .box_item .image img {
    width: 100%;
  }

  .section_06 .accordion_01, .section_06 .accordion_02 {
    display: none;
  }

  .section_06 .colum2 {
    width: 100%;
  }

  .section_06 .colum2 .textWrapper {
    width: 100%;
  }

  .section_06 .colum2 .image {
    width: 100%;
  }
  .section_06 .colum2 .image img {
    width: 100%;
  }
}

/* section_07 */
.section_07 {
  margin-bottom: 100px;
}

.section_07 .section_inner {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: rgba(204, 193, 147, 0.15);
}

.section_07 .titleWrapper {
  text-align: center;
  margin-bottom: 90px;
}

.section_07 .titleWrapper .icon {
  width: 58px;
  height: 51px;
  margin: 0 auto 40px;
}

.section_07 .titleWrapper .title {
  margin-bottom: 40px;
  font-family: 'SawarabiMincho-Regular', serif;
  font-size: 40px;
}

.section_07 .listWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section_07 .listWrapper .list {
  width: 370px;
  margin-right: 40px;
  border: 7px solid #fff;
  padding-bottom: 30px;
}

.section_07 .listWrapper .list:last-child {
  margin-right: 0;
}

.section_07 .listWrapper .list_01 {
  border-color: #ff6d85;
}

.section_07 .listWrapper .list_02 {
  border-color: #8fb746;
}

.section_07 .listWrapper .title {
  height: 70px;
  font-family: 'NotoSansJP-Bold', sans-serif;
  font-size: 20px;
  text-align: center;
  padding: 20px 30px;
  margin-bottom: 30px;
}

.section_07 .listWrapper .list_01 .title {
  letter-spacing: 0.2em;
  color: #ff6d85;
  background-color: rgba(255, 109, 133, 0.1);
}

.section_07 .listWrapper .list_02 .title {
  color: #74a537;
  background-color: rgba(116, 165, 55, 0.1);
}

.section_07 .listWrapper .item {
  position: relative;
  font-family: 'NotoSansJP-Regular', sans-serif;
  font-size: 14px;
  text-align: left;
  padding: 10px 30px 10px 60px;
}

.section_07 .listWrapper .list_01 .item {
  color: #ff6d85;
}

.section_07 .listWrapper .list_01 .item:before {
  position: absolute;
  top: 5px;
  left: 30px;
  content: '';
  width: 20px;
  height: 20px;
  background-image: url(../images/saipan/check.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.section_07 .listWrapper .list_02 .item {
  color: #74a537;
}

.section_07 .listWrapper .list_02 .item:before {
  position: absolute;
  top: 12px;
  left: 30px;
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #74a537;
}

@media screen and (min-width:800px) and (max-width:1200px) {
  .section_07 .section_inner {
    width: 83.3vw;
    padding-top: 5vw;
    padding-bottom: 7.5vw;
  }

  .section_07 .titleWrapper {
    margin-bottom: 7.5vw;
  }

  .section_07 .titleWrapper .icon {
    width: 4.8vw;
    height: 4.25vw;
    margin: 0 auto 3.3vw;
  }

  .section_07 .titleWrapper .title {
    font-size: 3.3vw;
  }

  .section_07 .listWrapper {
    padding: 0 30px;
  }

  .section_07 .listWrapper .title {
    height: 6vw;
    font-size: 1.6vw;
  }
}

@media screen and (max-width:799px) {
  .section_07 {
    margin-bottom: 20px;
  }

  .section_07 .section_inner {
    width: 100%;
    margin: 0 auto;
    padding: 50px 20px;
  }

  .section_07 .titleWrapper {
    margin-bottom: 40px;
  }

  .section_07 .titleWrapper .title {
    margin-bottom: 40px;
    font-size: 40px;
  }

  .section_07 .listWrapper {
    display: block;
  }

  .section_07 .listWrapper .list {
    width: 100%;
    margin-right: 0;
    border: 7px solid #fff;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .section_07 .listWrapper .list:last-child {
    margin-right: 0;
  }

  .section_07 .listWrapper .list_01 {
    border-color: #ff6d85;
  }

  .section_07 .listWrapper .list_02 {
    border-color: #8fb746;
  }

  .section_07 .listWrapper .title {
    height: 70px;
    font-family: 'NotoSansJP-Bold', sans-serif;
    font-size: 20px;
    text-align: center;
    padding: 20px 30px;
    margin-bottom: 30px;
  }

  .section_07 .listWrapper .list_01 .title {
    color: #ff6d85;
    background-color: rgba(255, 109, 133, 0.1);
  }

  .section_07 .listWrapper .list_02 .title {
    color: #74a537;
    background-color: rgba(116, 165, 55, 0.1);
  }

  .section_07 .listWrapper .item {
    position: relative;
    font-family: 'NotoSansJP-Regular', sans-serif;
    font-size: 14px;
    text-align: left;
    padding: 10px 30px 10px 60px;
  }

  .section_07 .listWrapper .list_01 .item {
    color: #ff6d85;
  }

  .section_07 .listWrapper .list_01 .item:before {
    position: absolute;
    top: 5px;
    left: 30px;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url(../images/saipan/check.svg);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .section_07 .listWrapper .list_02 .item {
    color: #74a537;
  }

  .section_07 .listWrapper .list_02 .item:before {
    position: absolute;
    top: 12px;
    left: 30px;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #74a537;
  }
}

/* section_08 */
.section_08 {
  background-color: rgba(26, 139, 211, 0.15);
}

.section_08 .section_inner {
  position: relative;
  width: 800px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 90px;
}

.section_08 .titleWrapper {
  text-align: center;
  margin-bottom: 80px;
}

.section_08 .titleWrapper .icon {
  width: 58px;
  height: 51px;
  margin: 0 auto 40px;
}

.section_08 .titleWrapper .title {
  margin-bottom: 90px;
  font-family: 'SawarabiMincho-Regular', serif;
  font-size: 40px;
}

.section_08 .titleWrapper .text {
  width: 800px;
  margin: 0 auto;
  text-align: left;
  font-family: 'NotoSansJP-Regular', sans-serif;
  font-size: 12px;
  line-height: 21px;
  margin-bottom: 30px;
}

.section_08 .linkbox {
  width: 300px;
  height: 50px;
  border-left: 1px solid #006b9e;
  border-bottom: 1px solid #006b9e;
  border-right: 1px solid #006b9e;
}

.section_08 .linkbox .linkbox_title {
  position: relative;
  top: -6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #006b9e;
  font-family: 'NotoSansJP-Regular', sans-serif;
  font-size: 10px;
  white-space: nowrap
}

.section_08 .linkbox .linkbox_title:before {
  content: '';
  border-top: 1px solid #006b9e;;
  margin-right: 10px;
  width: 50%;
}

.section_08 .linkbox .linkbox_title:after {
  content: '';
  border-top: 1px solid #006b9e;;
  margin-left: 10px;
  width: 50%;
}

.section_08 .linkbox .linkbox_title span {
  font-family: 'Eurostile', sans-serif;
  font-size: 14px;
}

.section_08 .linkbox .anchor {
  position: relative;
  color: #006b9e;
  padding-left: 20px;
  padding-right: 30px;
  font-family: 'Eurostile', sans-serif;
  font-size: 16px;
}

.section_08 .linkbox .anchor:before {
  position: absolute;
  top: 3px;
  right: 0;
  content: '';
  background-image: url(../images/saipan/link.svg);
  background-repeat: no-repeat;
  width: 18px;
  height: 20px;
}

.section_08 .shop {
}

.section_08 .shop .shop_head {
  background-color: #006b9e;
  padding: 40px 20px 20px;
}

.section_08 .shop_head .head_title {
  font-family: 'SawarabiMincho-Regular', serif;
  font-size: 25px;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
}

.section_08 .shop_head .head_text {
  font-family: 'NotoSansJP-Regular', sans-serif;
  font-size: 12px;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.section_08 .shop_head .link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.section_08 .shop_head .link_item {
  margin-left: 20px;
}

.section_08 .shop_head .link_item a {
  font-family: 'NotoSansJP-Regular', sans-serif;
  font-size: 12px;
  color: #fff;
}

.section_08 .shop_table {
  background-color: #fff;
}

.section_08 .shop_table .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid rgba(26, 139, 211, 0.15);
}

.section_08 .shop_table .th {
  padding-left: 65px;
}

.section_08 .shop_table .th a {
  position: relative;
  display: block;
  width: 250px;
  font-family: 'Eurostile', sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #006b9e;
}


.section_08 .shop_table .th a:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -35px;
  margin: auto;
  content: '';
  background-image: url(../images/saipan/shop_arrow.svg);
  width: 10px;
  height: 10px;
}

.section_08 .shop_table .td {
}

.section_08 .shop_table .td a {
  display: block;
  width: 450px;
  font-family: 'Eurostile', sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #006b9e;
}

.section_08 .bottom_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section_08 .bottom_link .link_item{
  position: relative;
  width: 100%;
  margin: 20px;
}

.section_08 .bottom_link .link_item a {
  position: relative;
  display: block;
  background-color: #1a8bd3;
  width: 100%;
  height: 55px;
  line-height: 55px;
  font-family: 'NotoSansJP-Regular', sans-serif;
  font-size: 15px;
  color: #fff;
  border-radius: 4px;
  text-align: center;
}

.section_08 .bottom_link .link_item:before {
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  margin: auto;
  z-index: 10;
  content: '';
  width: 20px;
  height: 22px;
  background-image: url(../images/saipan/dots01.svg);
  background-repeat: no-repeat;
}

.section_08 .bottom_link .link_item:after {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  z-index: 10;
  content: '';
  width: 17px;
  height: 19px;
  background-image: url(../images/saipan/dots02.svg);
  background-repeat: no-repeat;
}

.footer {
  padding: 40px 0 40px 40px;
  background-color: #fff;
  color: #1a8bd3;
  font-family: 'NotoSansJP-Regular', sans-serif;
  font-size: 12px;
}

@media screen and (min-width:800px) and (max-width:1200px) {
  .section_08 .section_inner {
    width: 83.3vw;
  }

  .section_08 .titleWrapper {
    width: 66.6vw;
    margin: 0 auto 80px;
  }

  .section_08 .titleWrapper .title {
    margin-bottom: 3.3vw;
    font-size: 3.3vw;
  }

  .section_08 .titleWrapper .text {
    width: 66.6vw;
    font-size: 1vw;
    line-height: 1.75vw;
  }

  .section_08 .shop_table .td a {
    width: 37.5vw;
  }
}

@media screen and (max-width:799px) {
  .section_08 {
    padding: 40px 20px 20px;
  }

  .section_08 .section_inner {
    width: 100%;
    padding-top: 5vw;
    padding-bottom: 7.5vw;
  }

  .section_08 .titleWrapper {
    margin-bottom: 7.5vw;
  }

  .section_08 .titleWrapper .title {
    margin-bottom: 3.3vw;
    font-size: 25px
  }

  .section_08 .titleWrapper .text {
    width: 100%;
    font-size: 12px;
    line-height: 21px;
  }

  .section_08 .linkbox {
    width: 100%;
    height: 50px;
  }

  .section_08 .shop_table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 20px;
  }

  .section_08 .shop_table .th a {
    font-size: 13px;
    width: 100%;
  }

  .section_08 .shop_table .tr {
    width: 49%;
    border-bottom: 0px;
  }

  .section_08 .shop_table .th {
    padding-left: 40px;
  }

  .section_08 .shop_table .td {
    display: none;
  }

  .section_08 .shop_table .th a:before {
    left: -20px;
  }

  .section_08 .bottom_link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .section_08 .bottom_link .link_item {
    margin: 5px 20px;
  }

  .footer {
    padding: 40px 0;
    text-align: center;
  }
}
