@charset "UTF-8";
/*============================================================
common
==============================================================*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
 box-sizing: border-box;
}

body {
  position: relative;
  font-family: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 14px;
  font-size: 0.875rem;
  color: #33464f;
  letter-spacing: 0.1rem;
  line-height: 1.8;
  /*読み込み時ふわっと表示させる*/
  animation: fadeIn 1.5s ease 0s 1 normal;
}
@media (min-width: 769px) {
  body {
    font-size: 16px;
    font-size: 1rem;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  display: block;

  max-width: 100%;
  margin: auto;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  /*-webkit-appearance: none;
  -moz-appearance: none;*/
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
a:link, a:visited, a:active {
  color: #33464f;
}

.sp {
  display: inherit;
}
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media (min-width: 769px) {
  .pc {
    display: inherit;
  }
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.en {
  font-family: "Cormorant Garamond", serif;
}

.inner {
  width: 100%;
  margin: auto;
  padding: 0 20px;
}
@media (min-width: 769px) {
  .inner {
    width: 93.8881664499vw;
  }
}
@media (min-width: 1040px) {
  .inner {
    width: 94%;
    max-width: 1040px;
  }
}

.flex_wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: normal;
  -webkit-box-pack: normal;
  -ms-flex-pack: normal;
  align-items: normal;
  -webkit-box-align: normal;
  -ms-flex-align: normal; /* Safari */
  flex-wrap: wrap;
}

.flex_wrap_between {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center; /* Safari */
  flex-wrap: wrap;
}

.flex_wrap_center {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center; /* Safari */
  flex-wrap: wrap;
}

.flex_wrap_middle {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: normal;
  -webkit-box-align: normal;
  -ms-flex-align: normal; /* Safari */
  flex-wrap: wrap;
}

.h2_ttl {
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  color: #001823;
  line-height: 1.4;
}
@media (min-width: 769px) {
  .h2_ttl {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

.h2_ttl_en {
  position: relative;
  display: block;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  color: #00a8bb;
  margin-top: 30px;
}
.h2_ttl_en::after {
  content: "";
  position: absolute;
  margin: auto;
  top: -15px;
  right: 0;
  left: 0;
  border-bottom: solid 1px #03004c;
  width: 30px;
}
@media (min-width: 769px) {
  .h2_ttl_en {
    font-size: 16px;
    font-size: 1rem;
  }
}

.btn {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  background: #03004c;
  background-clip: padding-box;
  border-radius: 100vh;
  padding: 12px 50px;
  transition: all 0.3s ease-in-out 0s;
  box-shadow: 0px 3px 5px 0px rgba(10, 51, 77, 0.5);
}
.btn::after {
  content: url(../img/btn_arr.png);
  vertical-align: middle;
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -14px;
}
.btn:link, .btn:visited, .btn:active {
  color: #fff;
}
.btn:hover {
  opacity: 0.8;
}
@media (min-width: 769px) {
  .btn {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 12px 90px;
  }
  .btn::after {
    margin-top: -18px;
  }
}

/*============================================================
header
==============================================================*/
header .header_inner {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  padding: 10px 15px;
}
header .navi ul {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
header .btn {
  padding: 12px 30px 12px 20px;
}
header #g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all 0.3s;
}
header #g-nav ul {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header #g-nav li {
  list-style: none;
  text-align: center;
}
header #g-nav li a {
  font-size: 15px;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
header #g-nav li .btn {
  width: 240px;
  padding: 12px 20px 12px 20px;
  margin-top: 10px;
}
header #g-nav li .btn::after {
  right: 20px;
  margin-top: -13px;
}
header #g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}
header #g-nav.panelactive ul {
  display: block;
}
header .openbtn {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #001823;
  border-radius: 0 0 4px 4px;
}
header .openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}
header .openbtn span:nth-of-type(1) {
  top: 15px;
}
header .openbtn span:nth-of-type(2) {
  top: 23px;
}
header .openbtn span:nth-of-type(3) {
  top: 31px;
}
header .openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
header .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
header .openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
@media (min-width: 769px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all, 0.5s;
  }
  header .header_inner {
    height: 80px;
    padding: 0 20px;
  }
  header .navi ul {
    font-size: 1.300390117vw;
  }
  header .navi ul li {
    margin: 0 15px;
  }
  header .btn {
    width: auto;
    font-size: 1.300390117vw;
    padding: 12px 40px;
  }
  header .btn::after {
    right: 20px;
    margin-top: -12px;
  }
}
@media (min-width: 1040px) {
  header .navi ul {
    font-size: 14px;
    font-size: 0.875rem;
  }
  header .btn {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

/*============================================================
kv
==============================================================*/
#kv {
  color: #fff;
  background: url(../img/kv_bg.jpg) no-repeat bottom center/cover;
  padding: 120px 0 100px;
  text-align: center;
}
#kv h1 {
  font-size: 28px;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

@media (min-width: 769px) {
  #kv {
    height: 700px;
  }
  #kv h1 {
    font-size: 4.6814044213vw;
  }
  #kv p {
    font-size: 2.0806241873vw;
  }
}
@media (min-width: 1040px) {
  #kv h1 {
    font-size: 52px;
    font-size: 3.25rem;
  }
  #kv p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
/*============================================================
intro
==============================================================*/
#intro {
  padding: 60px 0 20px;
}
#intro .txt {
  text-align: center;
  max-width: 800px;
  margin: 20px auto 0;
}
#intro .contents_wrap {
  text-align: center;
  margin-top: 40px;
}
#intro .contents_wrap p {
  max-width: 810px;
  margin: 0 auto;
}
#intro h3 {
  font-size: 18px;
  font-size: 1.125rem;
  color: #008ab8;
  margin-bottom: 20px;
}
#intro li {
  text-align: center;
  margin: 20px auto;
}
#intro li h4 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 10px;
  margin-bottom: 10px;
}
#intro li p {
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 769px) {
  #intro {
    padding: 80px 0 40px;
  }
  #intro .contents_wrap {
    margin: 80px 0 0;
  }
  #intro h3 {
    font-size: 30px;
    font-size: 1.875rem;
  }
  #intro li {
    margin: 40px auto;
  }
}
/*============================================================
about
==============================================================*/
#about {
  background: #008ab8;
  color: #fff;
  padding: 60px 0;
}
#about .h2_ttl {
  color: #fff;
}
#about .h2_ttl span {
  color: #fff;
}
#about .h2_ttl span::after {
  border-bottom: solid 1px #fff;
}
#about h3 {
  color: #001823;
}
#about .txt {
  text-align: center;
  margin: 30px 0;
}
#about ul {
  color: #33464f;
  max-width: 800px;
  margin: 0 auto;
}
#about li {
  display: flex;
  display: -ms-flexbox;
  justify-content: normal;
  -webkit-box-pack: normal;
  -ms-flex-pack: normal;
  align-items: normal;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  background: #fff;
  border-radius: 6px;
  padding: 20px 18px;
  margin-bottom: 20px;
}
#about li h3 {
  margin-bottom: 10px;
}
#about li figure {
  width: 20%;
}
#about li .txt_box {
  width: 80%;
  margin-left: 10px;
}
#about .tips {
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  border-radius: 6px;
  border: solid 2px #fff;
  padding: 20px 18px;
  max-width: 800px;
  margin: 0 auto;
}
#about .tips h3 {
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  color: #fff;
}
#about .tips p {
  margin: 20px 0;
}

@media (min-width: 769px) {
  #about {
    padding: 80px 0;
  }
  #about h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
  #about .txt {
    margin: 60px 0 30px;
  }
  #about li {
    padding: 30px 40px;
  }
  #about li figure {
    width: auto;
  }
  #about li .txt_box {
    width: 100%;
  }
  #about .tips {
    padding: 40px 80px;
  }
  #about .tips figure img {
    zoom: 0.8;
  }
}
/*============================================================
merit
==============================================================*/
#merit {
  padding: 60px 0 20px;
}
#merit ul {
  margin-top: 40px;
}
#merit li {
  margin: 0 auto 40px;
}
#merit li figure {
  width: 100%;
}
#merit li p {
  margin-top: 20px;
}

@media (min-width: 769px) {
  #merit {
    padding: 80px 0 20px;
  }
  #merit ul {
    margin-top: 60px;
  }
  #merit li {
    margin-bottom: 60px;
  }
  #merit li figure {
    width: 50%;
  }
  #merit li p {
    width: 46%;
  }
  #merit li:nth-child(odd) {
    flex-direction: row-reverse;
  }
}

/*============================================================
news
==============================================================*/
#news {
    background: #e3f0f5;
    padding: 60px 0;
}
#news .txt{
  text-align: center;
}
#news ul{margin-top: 40px;}
  #news ul> li{margin-bottom:10px;font-size: 14px;}
  #news ul> li.empty{text-align:center;color: #999999;}
  #news ul> li:last-child{margin-bottom: none;}
  #news ul> li>a{display: flex;}
  #news ul> li>a>span{display: inline-block;}
  #news ul> li>a>.date{width: 120px}
  #news ul> li>a>.title{}
  #news ul> li{margin-bottom:10px;font-size: 14px;border-bottom: 1px solid #c9d8de;padding-bottom: 10px;}
  #news ul> li:last-child{margin-bottom: none;padding:0;border:none;}
/*============================================================
reason
==============================================================*/
#reason {
  background: #e3f0f5;
  padding: 60px 0;
}
#reason h3 {
  color: #00a8bb;
  background: #fff;
  padding: 10px 20px;
}
#reason ul {
  max-width: 900px;
  margin: 40px auto 0;
}
#reason li {
  margin-bottom: 40px;
}
#reason .txt_wrap {
  max-width: 800px;
  padding: 10px 10px 10px 20px;
  margin: 0 auto;
}
#reason .txt_link {
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 20px;
}
#reason .txt_link a {
  text-decoration: underline;
}

@media (min-width: 769px) {
  #reason {
    padding: 80px 0;
  }
  #reason h3 {
    font-size: 30px;
    font-size: 1.875rem;
    text-align: center;
    padding: 6px 20px;
  }
  #reason ul {
    margin: 60px auto 0;
  }
  #reason .txt_wrap {
    margin-top: 20px;
  }
}
/*============================================================
shrimp
==============================================================*/
#shrimp {
  padding: 40px 0;
}
#shrimp h3 {
  color: #008ab8;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
#shrimp .caution {
  text-align: right;
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 20px;
}

.shrimp_box {
  align-items: normal;
  flex-direction: column-reverse;
  margin-top: 60px;
}

@media (min-width: 769px) {
  #shrimp {
    padding: 80px 0;
  }
  #shrimp h3 {
    font-size: 30px;
    font-size: 1.875rem;
    margin-bottom: 40px;
  }
  #shrimp .txt {
    width: 58%;
  }
  #shrimp .caution {
    text-align: right;
    margin-bottom: 0;
  }
  .shrimp_box {
    flex-direction: row;
  }
}
/*============================================================
cta
==============================================================*/
.cta {
  background: url(../img/cta_bg.jpg) no-repeat center/cover;
  padding: 60px 0;
  margin-top: 60px;
}
.cta h2 {
  position: relative;
  color: #008ab8;
}

.cta_en {
  display: block;
  color: #03004c;
  font-size: 40px;
  font-size: 2.5rem;
  position: absolute;
  top: -155%;
  right: 0;
  left: 0;
}

/*.cta_ttl_sub {
	display: inline-block;
	@include fontsize(14);
	border-bottom: solid 1px #008ab8;
	padding: 0 15px;
	margin-bottom: 10px;
}*/
.cta_box {
  background: url(../img/cta_wave.png) no-repeat bottom center/contain;
  background-color: #fff;
  text-align: center;
  max-width: 800px;
  padding: 20px 20px 30px;
  margin: 0 auto;
  border-radius: 4px;
}
.cta_box p {
  margin: 20px 0;
}

@media (min-width: 769px) {
  .cta {
    padding: 80px 0 60px;
    margin-top: 100px;
  }
  .cta h2 {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .cta_en {
    font-size: 100px;
    font-size: 6.25rem;
    top: -325%;
  }
  /*.cta_ttl_sub {
  	@include fontsize(16);
  }*/
  .cta_box {
    padding: 40px 20px 40px;
  }
  .cta_box p {
    margin: 30px 0;
  }
}
/*============================================================
faq
==============================================================*/
#faq {
  padding: 60px 0;
}

.faq_box {
  width: 96%;
  max-width: 800px;
  margin: 40px auto 0;
}

.accordion {
  margin-bottom: 30px;
}

.toggle {
  display: none;
}

.accordion_ttl {
  display: block;
  position: relative;
  text-align: left;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  background: #5cb4d1;
  padding: 10px 50px 10px 10px;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.2s;
  border-radius: 4px;
}
.accordion_ttl p {
  display: flex;
  display: -ms-flexbox;
  justify-content: normal;
  -webkit-box-pack: normal;
  -ms-flex-pack: normal;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.accordion_ttl span {
  flex-shrink: 0;
  display: inline-block;
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  line-height: 4rem;
  margin-right: 20px;
  margin-bottom: 10px;
}
.accordion_ttl::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}
.accordion_ttl::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

.accordion_ttl,
.accordion_txt {
  line-height: 1.4rem;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.accordion_txt {
  height: 0;
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}
.accordion_txt .answer {
  flex-shrink: 0;
  display: inline-block;
  text-align: center;
  color: #008ab8;
  font-size: 32px;
  font-size: 2rem;
  margin-right: 20px;
}
.accordion_txt p {
  display: flex;
  display: -ms-flexbox;
  justify-content: normal;
  -webkit-box-pack: normal;
  -ms-flex-pack: normal;
  align-items: normal;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
}
.accordion_txt figure {
  margin: 16px 10px 0;
}

.toggle:checked + .accordion_ttl + .accordion_txt {
  height: auto;
  padding: 20px;
  transition: all 0.3s;
}

.toggle:checked + .accordion_ttl::after {
  transform: translateY(-50%) rotate(0);
}

@media (min-width: 769px) {
  #faq {
    padding: 80px 0;
  }
  .faq_box {
    margin: 60px auto 0;
  }
  .accordion_ttl {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0 66px 0 20px;
  }
  .accordion_ttl span {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .accordion_txt {
    font-size: 16px;
    font-size: 1rem;
  }
  .accordion_txt .answer {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
/*============================================================
contact
==============================================================*/
#contact {
  background: #e3f0f5;
  padding: 60px 0;
}

.contact_box {
  max-width: 800px;
  background: #fff;
  padding: 40px;
  border-radius: 4px;
  margin: 40px auto 0;
}

@media (min-width: 769px) {
  #contact {
    padding: 80px 0;
  }
  .contact_box {
    margin: 60px auto 0;
  }
}
/*============================================================
footer
==============================================================*/
footer {
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  background: #001823;
  text-align: center;
  padding: 20px 0;
}
footer ul {
  margin-bottom: 20px;
}
footer li {
  margin-bottom: 10px;
}
footer li a:link, footer li a:visited, footer li a:active {
  color: #fff;
}

.footer_inner {
  width: 100%;
  margin: auto;
  padding: 40px 0;
}
@media (min-width: 769px) {
  .footer_inner {
    max-width: 960px;
    margin: auto;
    padding: 40px 20px;
  }
}

.footer_copy {
  letter-spacing: normal;
}

@media (min-width: 769px) {
  footer {
    padding: 50px 0;
  }
  footer .inner {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }
  footer ul {
    display: flex;
    display: -ms-flexbox;
    justify-content: normal;
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    align-items: normal;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    margin-bottom: 0;
  }
  footer li {
    font-size: 14px;
    font-size: 0.875rem;
    margin-right: 40px;
  }
}
/*============================================================
company
==============================================================*/
#company {
  padding: 60px 0;
}
#company .h2_ttl {
  color: #666666;
  margin-bottom: 30px;
}
#company .h2_ttl_en {
  color: #007580;
}

.bg_g {
  background: #e5f1f2;
}

.company_wrap {
  padding: 60px 0;
}

.company_list li {
  border-top: solid 1px #d5d5d5;
  padding: 20px;
}
.company_list li:last-child {
  border-bottom: solid 1px #d5d5d5;
}

.urumiebi_box {
  background: #fff;
  border-radius: 4px;
  padding: 30px;
  margin-top: 40px;
}
.urumiebi_box h3 {
  color: #007580;
  padding-bottom: 8px;
  margin-bottom: 16px;
  border-bottom: solid 1px #d5d5d5;
}

.company_name_box figure {
  margin-bottom: 30px;
}

@media (min-width: 769px) {
  #company .h2_ttl {
    margin-bottom: 60px;
  }
  .company_wrap {
    padding: 80px 0;
  }
  .company_list li {
    display: flex;
    display: -ms-flexbox;
    justify-content: normal;
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center; /* Safari */
    flex-wrap: wrap;
    padding: 40px;
  }
  .company_list .ttl {
    width: 30%;
  }
  .urumiebi_box .txt {
    width: 75%;
  }
  .urumiebi_box figure {
    width: 15%;
  }
  .company_name_box figure {
    width: 42%;
    margin-bottom: 0;
  }
  .company_name_box p {
    width: 50%;
  }
}/*# sourceMappingURL=style.css.map */
@media (max-width: 480px){
  /*============================================================
  news
  ==============================================================*/
  #news {
      background: #e3f0f5;
      padding: 60px 0;
  }
  #news .txt{
    text-align: center;
  }
  #news ul{margin-top: 40px;}
    #news ul> li{margin-bottom:10px;font-size: 14px;}
    #news ul> li.empty{text-align:center;color: #999999;}
    #news ul> li:last-child{margin-bottom: none;}
    #news ul> li>a{display: flex;flex-direction: column;}
    #news ul> li>a>span{display: inline-block;}
    #news ul> li>a>.date{width: 100%;font-size: 12px;}
    #news ul> li>a>.title{}
}